参照Martin Brochhaus大神的视频,今天我也尝试了一下配置vim python IDE以后使用过程中只需要https://github.com/wyj1239630590/vim-as-a-python-ide, 然后将.vimrc复制到家目录下,安装包管理器与需要的插件即可(.vimrc的注释文件中有). 目前支持的功能: , + m or n : 前后切换tabctrl + > or < : 给选中的行增加或者减少缩进f and F : 对python中的函数进行折叠或者去折叠…
昨天安装了macvim,今天在上面配置了一下python的ide: 大家也可参考http://blog.dispatched.ch/2009/05/24/vim-as-python-ide/ 1.文法高亮 为了能在Vim中支持Python文法需要用到插件python.vim,该插件默认位于<Vim安装目录>/<$VIMRUNTIME>/syntax/下,如果你在该路径下没有找到这个插件,需要到python.vim : Enhanced version of the python s…
个人的插件和配置 set nocompatible " 去除VI一致性,必须要添加 filetype off " 必须要添加 " advanced keys " :qa! close all the tabs set cursorline set nu " parameter for ctags set autochdir set tags=tags; " parameter for NERDTree " autocmd VimEnte…
Use Vim as a Python IDE I love vim and often use it to write Python code. Here are some useful plugins and tools for building a delightful vim python environment, escpecially for Vim8: 我喜欢vim,经常用它来编写Python代码.以下是一些有用的插件和工具,用于构建令人愉快的vim-python环境,尤其是vim…
在前面文章中介绍的关于vim基础插件之上加上一款专门为读写python程序的插件-Python-mode. 顾名思义,就是让vim在python模式下运行.这里介绍这款插件的功能以及如何使用. 本文主要摘录Python-mode的帮助文档中个人觉得用到较多的并且比较有意义的内容. Introduction Python-mode: includes libraries such as pylint, rope, pydoc, pyflakes, pep8, and mccabe. Python-…