Vim常用编辑命令:移动、跳转到文档中某位置
vi编辑器是Linux和Unix上最基本的文本编辑器,是visual editor的简称,工作在字符模式下。由于不需要图形界面,vi是效率很高的文本编辑器。它在Linux上的地位就像Edit程序在DOS上一样。它可以执行输出、删除、查找、替换、块操作等众多文本操作,而且用户可以根据自己的需要对其进行定制。Vim是vi的加强版,比vi更容易使用。vi的命令几乎全部都可以在vim上使用。常用基本命令如
·
vi编辑器是Linux和Unix上最基本的文本编辑器,是visual editor的简称,工作在字符模式下。由于不需要图形界面,vi是效率很高的文本编辑器。它在Linux上的地位就像Edit程序在DOS上一样。它可以执行输出、删除、查找、替换、块操作等众多文本操作,而且用户可以根据自己的需要对其进行定制。Vim是vi的加强版,比vi更容易使用。vi的命令几乎全部都可以在vim上使用。常用基本命令如下有:
- gg:命令将光标移动到文档开头
- G:命令将光标移动到文档末尾
- vi编辑器中在命令行模式下输入G可以直接跳转到页面的底部在命令行模式下输入1G可以跳转到页面的头部位置
- h Move left
- j Move down
- k Move up
- l Move right
- w Move to next word
- W Move to next blank delimited word
- b Move to the beginning of the word
- B Move to the beginning of blank delimted word
- e Move to the end of the word
- E Move to the end of Blank delimited word
- ( Move a sentence back
- ) Move a sentence forward
- { Move a paragraph back
- } Move a paragraph forward
- 0 Move to the begining of the line
- $ Move to the end of the line
- 1G Move to the first line of the file
- G Move to the last line of the file
- nG Move to nth line of the file
- :n Move to nth line of the file
- fc Move forward to c
- Fc Move back to c
- H Move to top of screen
- M Move to middle of screen
- L Move to botton of screen
- % Move to associated ( ), { }, [ ]
更多推荐
已为社区贡献1条内容
所有评论(0)