基础且常用的Vim命令(Basic but useful Vim commands)

Cut & Paste

  1. dw: delete word until the start of the second word.
    d2w: delete until the start of the third word
  2. d$: delete till the end of the sentence.
    • w: start of next word
    • e: end of current word
    • $: end of current sentence
  3. u: undo one action
    U: undo all the actions token on the line
  4. y: copy the selected texts.
  5. p: if you use dd to delete one sentence, the whole sentence is memorized, so dd performs like cut operation.
    Then you can press p to paste that sentence under the cursor.

Search & Replace

  1. r: replace the current letter once.
    R: continue replace letter.
  2. ce: delete all the letters from the cursor till the end of the word, and into edit mode.
  3. Ctrl+G: show the current line number.
  4. : xx: search xx in the document.
  5. %: match the corresponding bracket, like (, {, [.
  6. s/old/new/g: replace all the old in the current line with new.
    %s/old/new/g: replace all the old in the whole document with new.
  7. Ctrl+o: jump back the the previous place.

Execute outer commands inside Vim

  1. !command: execute outer command, like !ls can list all the files in current folder.
  2. w new_file: save the current file as new_file in the current folder.
  3. v: select some text. After selected some text using v command, type :, then type w filename, can save the selected text into filename in current folder.
  4. r filename: import text from filename into current line.

Get help info

  1. help xx: get help information about xx command. The will open a new vim windows.
  2. Ctrl+w: change between different vim window.
  3. Ctrl+D: list all possible command.
  4. Tab: complete the code
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值