VIM:插件:修订间差异

来自WHY42
imported>Soleverlee
imported>Soleverlee
第11行: 第11行:


=supertab=
=supertab=
[http://www.vim.org/scripts/script.php?script_id=1643 Supertab]可以实现按tab自动补全。
<source lang="bash">
vim supertab.vmb
:so %
</source>
安装完在~/.vim/plugins
=xx=
[[Category:Linux/Unix]]
[[Category:Linux/Unix]]

2017年4月11日 (二) 03:25的版本

Pathogen

Pathomakes it super easy to install plugins and runtime files in their own private directories.

mkdir -p ~/.vim/autoload ~/.vim/bundle 
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

.vimrc:

execute pathogen#infect()

supertab

Supertab可以实现按tab自动补全。

vim supertab.vmb
:so %

安装完在~/.vim/plugins

xx