[Practical.Vim(2012.9)].Drew.Neil.Tip52 学习摘要
Delete Around, or Change Inside
Vim ’s text objects fall into two categories: those that interact with pairs of delimiters, such as i) , i” , and it , and those that interact with chunks of text, such as words, sentences, and paragraphs.
Vim 中的文本對象可以分為兩種,一種是我們在Tip51所介紹的帶分隔符的如i),i”,it等,另外一種就是文本塊,如單詞,句子,段落。
iw包含當前單詞從第一個字符到最后一個字符,aw也是包含當前單詞從第一個字符到最后一個字符,不過還包含當前單詞前面或后面的一個空格符。
daw命令可以分為兩個部分,d表示刪除,aw選擇當前光標所在單詞以及前面或后面的一個空格,daw就是刪除當前光標所在單詞以及一個空格。
ciw命令可以分為兩個部分,c表示更改,iw選擇當前光標所在單詞,caw就是更改當前光標所在單詞,進入insert模式,輸入most,完成更改。
we could say that the d{motion} command tends to work well with aw, as , and ap, whereas the c{motion} command works better with iw and similar.
一般來說,d{motion} 命令后面常跟aw,as,ap命令,c{motion}命令后面常跟iw,is,ip命令。
總結
以上是生活随笔為你收集整理的[Practical.Vim(2012.9)].Drew.Neil.Tip52 学习摘要的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 陀螺仪加速度计MPU6050程序与校准方
- 下一篇: 图像处理之图像质量评价指标MSE(均方误