Vim是一个类似于Vi的著名的功能强大、高度可定制的文本编辑器,在Vi的基础上改进和增加了很多特性。VIM是纯粹的自由软件。
MS-Windows: Click this link to download the self-installing executable. Or try the latest version (uses LF instead of CR-LF for runtime files).
Unix: See the GitHub page, or Mercurial, if you prefer that. Mac: See the MacVim project
点此加群 95813047
Vim 基本应用
vim 的buffer
Vim 漂亮主题
Vim 实用技巧
Vim 命令的全称和简称
Caps Lock 键更换
%
dt.
:so % :so ~/_vimrc :source ~/_vimrc
gf will go to the file under the cursor g] and other commands will jump to a tag definition (a tag can be a function or variable name, or more).
:w !sudo tee %
:%ret! 4
Ctrl + i
Ctrl + o Ctrl + i
Ctrl + ^
gv
选中想要自动缩进的内容,然后按 =
。
:%s/\r//g
set wrap
set nowrap
set nu set number
set nonu set nonumber
:vertical diffsplit file :diffthis
zi 打开关闭折叠 zv 查看此行 zm 关闭折叠 zM 关闭所有 zr 打开 zR 打开所有 zc 折叠当前行 zo 打开当前折叠 zd 删除折叠 zD 删除所有折叠