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’可以包围并包含某些字符,如 – 或’等.

相关文章

解决方案:解决linux下vim乱码的情况:(修改vimrc的内容)全...
Linuxvi/vim所有的UnixLike系统都会内建vi文书编辑器,其他的...
      vim正则匹配:空行:/^$/  /^[\t]*$/注释...
$select-editorSelectaneditor.Tochangelater,run'sele...
上次手贱忘了保存,这次就简单做个备忘吧,把踩过的坑记一下...
Linux之文本编译器小结vim的优势所有的UNIX-LIKE习通都会内置...