目录

Vim笔记

指令模式下的指令

1
2
3
4
5
6
7
8
9
# vim高亮搜索
	/名字  或 选中后 shift+3(非小键盘)
# 关闭vim搜索高亮
	输入:nohlsearch  或:set nohlsearch;

# vim增加页码
:set num
# 或 
:set number