其他分享
首页 > 其他分享> > Vim编辑器-Commands for Programmers

Vim编辑器-Commands for Programmers

作者:互联网

7 Commands for Programmers


  1. Position the cursor on the first {.
  2. Execute the command >i{.
    This shift right command (>) shifts the selected text to the right one shift width. In this case, the selection command that follows is i{, which is the “inner {} block” command.
  1. Position the cursor on the left or right curly brace.
  2. Start visual mode with the v command.
  3. Select the inner {} block with the command i}.
  4. Indent the text with >.

标签:Commands,CTRL,Programmers,use,Vim,cursor,command,following
来源: https://www.cnblogs.com/chao8888/p/15379462.html