VIM中的編輯和移動命令

Move

  1. h/i/j/k
  2. f/F 在同一行內查找
  3. / or ? 查找整個文檔
  4. gg/G 移動到文檔起始/結束
  5. */# 查找當前光標下的word
  6. zt(top) zb(buttom) zz 移動當前行到屏幕頂部/底部/中間
  7. H M L (high low middle) 移動光標到屏幕頂部/中間/底部
  8. ctrl+u/d ctrl+f/b 往前/日後移動半屏 往前/日後移動一屏
  9. w(next word)/b(begin of word)/e(end of word) W/B/E word move, 大寫和小寫時區分單詞的方式不同。
  10. m (mark) ma 而後使用'a可以回到標記爲a的地方。

Edit

  1. a/A/i/I
  2. r replace
  3. c change (by deleting, then placing you in insert mode) cw c$ ctl(changes until the next l character)
  4. d delete d5w dd d5d(delete 5 lines) d0 de d$ dtl(delete until the next l character)
  5. x/X remove under or left character.
相關文章
相關標籤/搜索