一切都在指令,掌握指令,你就可以这个漆黑的世界里神游!
哥先有下面目录打开一个文件:
1、行首行尾快速跳到
(1)、跳到行尾: $
- |mount -t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share /mnt/hgfs/
- mount -t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share /mnt/hgfs/ |
(2)、跳到行首:O
- 使用O之前:
- mount -t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share| /mnt/hgfs/
- 哥使用O之后:
- |mount -t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share /mnt/hgfs/
2、快捷跳到下一个词、上一个词
(1)、跳到下一个词: w
- 使用w之前:
- |mount -t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share /mnt/hgfs/
- 使用w之后:
- mount |-t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share /mnt/hgfs/
(2)、跳到上一个词: b
使用b之前:
- mount -t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share /mnt/hgfs/|
- 使用b之后:
- mount -t smbfs -o iocharset=utf8,username=dyli //192.168.1.102/share /mnt|/hgfs/
3、在C语言的.c文件中小试牛刀!
(1)、使用命令gg G 快速跳到文件的头与尾