命令模式下:set nu->查看行号;noh->no highlight; ?->逆向查找;/正向查找
#vim html.txt
vim search function: ? used to search up the current postion, / used to search down the current postion; shift+n,the specify the next backly;
it will case sensitive when we "set ignorecase" which is equal to use /\cfoo ,the "foo" is your keyword
input "noh" will remove the highlight,you can try now
:set autoindent
- 缩进问题,设置set paste选项,这样粘贴代码时就不会产生缩进了,但是如果需要缩进的时候又要把该选项改回set nopaste。这样换来换去很麻烦,所以可以设置一个开关。
set pastetoggle <F9>
- 与u命令相反的redo命令:ctrl+r
- 快速清空整个文件,可以使用命令: 在命令模式下,首先执行 gg 跳至文件首行 再执行:dG 这样就清空了整个文件,shift+g跳至文件末行
- 回到上一次编辑的地方,执行快捷键(连续按两个单引号或反引号),''或者``