3

Vim 文本选择范围

 1 year ago
source link: https://fann.im/blog/2014/04/17/vim-text-selection/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Vim 文本选择范围

Apr 17, 2014

Vim 文本选择时可以用 a i 指定选择范围。a 代表一个整体(block),i 代表 inner。比如:

vaw 包括单词和单词后的空格,viw 只选中单词。

vat - select a tag block, 包括 <tag></tag> 本身,vit - select inner tag,只选择 <tag></tag> 包起来的部分。

vab 选中包括 () 在内的文本,vib 不包括 () 自身,等同 va( va), vi( vi).

vaB 选中包括 {} 在内的文本,viB 不包括 {} 本身,等同 va{ va}, vi{ vi}, 类似有 va[ vi[

vip|vis 选中一段落文字,vip = visual inner paragraph. vis = inner sentence.

v 换为 d 是就变成了删除操作,删除范围同上。

查看帮助 :help v_<whatever>.

Was this page helpful?


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK