[Linux]vi – 光标移动命令

移动光标

  h,j,k,l: 向左、下、上、右移动一个位置

  0, $: 移动到一行的开始处/结尾处

  w,e,b: 下一个单词的头部,下一个单词的尾部,前一个单词的头部

  H,M,L: 移动当前屏幕的顶行、中间行和最后一行

  50w: 右移50个单词

  50j: 下移50行

  ^F: 向下移动一屏

  6^F: 向下移动六屏

  ^B:向上移动一屏

  6^B: 向上移动六屏

  1G: 跳到第一行

  33G: 跳到第33行

   G: 跳到最后一行

:set number : 显示行号

:set nonumber: 不显示行号

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.