vim基本用法

2019-04-30  本文已影响0人  VKE

vim支持各种语言和各种插件。

配置vimrc文件

建议参考https://github.com/amix/vimrc
错误处理

处理 /home/zzw/.vim_runtime/vimrcs/basic.vim 时发生错误:
第   52 行:
E174: 命令已存在: 请加 ! 强制替换

解决方法:
找到/home/zzw/.vim_runtime/vimrcs/basic.vim的第 52 行,发现其为command W w !sudo tee % > /dev/null,在这一行前面加",将其注释掉,保存退出即可。

vim-go requires Vim 7.4.2009 or Neovim 0.3.1, but you're using an older version.
Please update your Vim for the best vim-go experience.
If you really want to continue you can set this to make the error go away:
    let g:go_version_warning = 0
Note that some features may error out or behave incorrectly.
Please do not report bugs unless you're using Vim 7.4.2009 or newer or Neovim 0.3.1.

解决方法:
编辑.vimrc
vim ~/.vimrc
添加一行
let g:go_version_warning = 0
保存退出 问题解决

基本用法:

上一篇 下一篇

猜你喜欢

热点阅读