在vim中运行python
vim7.3自带对python2.7的支持(vim72对应python2.6)
?
read this:
http://vim.wikia.com/wiki/Python_-_check_syntax_and_run_script
?
in a word, all you need to do is just append the following lines to vimrc:
?
"=========== F5 run python ====================autocmd BufRead *.py set makeprg=python\ -c\ "import\ py_compile,sys;\ sys.stderr=sys.stdout;\ py_compile.compile(r'%')"autocmd BufRead *.py set efm=%C\ %.%#,%A\ \ File\ "%f"\\,\ line\ %l%.%#,%Z%[%^\ ]%\\@=%mautocmd BufRead *.py nmap <F5> :!python %<CR>autocmd BufRead *.py set tabstop=4autocmd BufRead *.py set nowrapautocmd BufRead *.py set go+=b?
?
save it and restart gvim, now when hit F5, a dos command window will pop up and your python code runs there.
?
?
?
?
?
?
?
?