Vim编辑器点滴积累
vim tab键空格数量控制
临时:进入VIM,执行: :set tabstop=4
永久:编辑用户目录下.vimrc文件,添加:set tabstop=4
vim 安装YouCompleteMe插件,启动时提示“YouCompleteme unavailable : no module named future”
http://www.jianshu.com/p/d908ce81017a
参考:http://www.cnblogs.com/shanql/p/6051240.html
1.进入~/.vim/bundle手动git clone获取插件git clone --recursive https://github.com/Valloric/YouCompleteMe.git
2.检查完整性 git submodule update --init --recursive
Vim批量注释
Vim下执行Shell命令
:! command
Vim下打开新的文件
:[vs/sv/e] 文件路径
Vim 标签页管理
具体操作可使用:help tab*
查看。