hongleimi 发表于 2017-4-23 10:41:39

在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.
页: [1]
查看完整版本: 在vim中运行python