微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

vim – 大写与小写字运动命令

参见英文答案 > Vim: word vs WORD4个
W,E,B和w,e和b之间有什么区别吗?

游戏vim adventures让你拿起一个大写字母B,以便在感叹号上跳过一块石头,即:

Remember: 
wordsXare
not WORDSX!

两个’X’分别代表宝箱和摇滚.为了跳过岩石,必须使用大写B而不是小写b.然后在usr_03.txt第03.1节中,它讨论了大写字运动命令.

   It is also possible to move by white-space separated WORDs.  This is not a
word in the normal sense,that's why the uppercase is used.  The commands for
moving by WORDs are also uppercase,as this figure shows:

           ge      b      w             e
           <-     <-   --->                   --->
    This is-a line,with special/separated/words (and some more). ~
       <----- <-----   -------------------->          ----->
         gE      B           W           E

With this mix of lowercase and uppercase commands,you can quickly move
forward and backward through a paragraph.

但当我执行:help W命令时,它给了我:

4. Word motions                        word-motions

   or                  <S-Right> w
w           [count] words forward.  |exclusive| motion.

   or                  <C-Right> W
W           [count] WORDS forward.  |exclusive| motion.

似乎没有任何区别.我正在使用Vim 7.4.

这基本上归结为vi认为是“单词”的内容.

这是一段文字,但使用大写的W,B等进行导航:

这是使用小写w,b等导航的相同文本:

基本上’WORD’被空格包围,而’word’可以包围并包含某些字符,如 – 或’等.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐