vim as a python ide

后端 未结 3 707
野趣味
野趣味 2021-02-04 20:04

Python support is integrated in the latest versions of emacs. For example C-c C-z provides me an interpreter and C-c C-c automatically interprets the f

3条回答
  •  囚心锁ツ
    2021-02-04 20:24

    To execute the current file in python, you can use the command :!python %. You can bind this to a keyboard shortcut by editing your vimrc. For example, adding nnoremap \ll :!python % to your vimrc will execute the current file in python when you type \ll in normal mode. (* see footnote for more details).

    The vim-ipython plugin lets you open an ipython window in vim. You may also be interested in tmux, which allows you to split your terminal in two, vertically (so you can have a shell and vim running in parallel).

    There are plenty of plugins that can turn vim into a really good python IDE. "pyflakes", which automatically highlights syntax errors, is a particular favorite of mine.

    This blog post describes vim plugins for python extensively:

    http://sontek.net/blog/detail/turning-vim-into-a-modern-python-ide


    (*) As an aside, you may want to make this command specific to python files (it doesn't really make sense to execute C++ source in a python interpreter). This can be done either by putting it in a specific python.vim file in your .vim/ftplugin directory, or by writing

    autocmd FileType python nnoremap \ll :!python %
    

    in your .vimrc. That way, you can rebind the \ll keyboard shortcut to different actions for different types of file.

    As a second aside, if you just want to execute a section of the current file, select the relevant lines in visual mode (SHIFT+v) and type the :!python % command. The lines selected will get piped to the python interpreter!

提交回复
热议问题