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

前端之家收集整理的这篇文章主要介绍了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’可以包围并包含某些字符,如 – 或’等.

原文链接:https://www.f2er.com/bash/385198.html

猜你在找的Bash相关文章