Ⅰ. 插件描述
pydoc integration for the best text editor on earthⅡ. 基本信息
|
Ⅲ. 安装方法
使用Vundle管理器安装
在你的.vimrc下添加:Plugin 'fs111/python-pydoc-vim'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall
对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。
使用NeoBundle管理器安装
在你的.vimrc下添加:NeoBundle 'fs111/python-pydoc-vim'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall
使用VimPlug管理器安装
在你的.vimrc下添加:Plug 'fs111/python-pydoc-vim'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall
使用Pathogen管理器安装
在终端中运行以下命令:cd ~/.vim/bundle
git clone https://github.com/fs111/pydoc.vim
Ⅳ. 文档说明
pydoc.vim integrates Python documentation system into Vim. If you use
Vim and Python, you want to use it :-)
pydoc.vim is an ftplugin and has to be installed in your ftplugin directory.
Installing it in the plugin directory won't work.
Also note that you need a line like the following in your .vimrc file:
filetype plugin on
You can find the complete documentation in the code itself.
Happy hacking!