`

在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%[%^\ ]%\\@=%m
autocmd BufRead *.py nmap <F5> :!python %<CR>

autocmd BufRead *.py set tabstop=4
autocmd BufRead *.py set nowrap
autocmd 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.

 

 

 

 

 

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics