所以在工作http://www.vimgolf.com/challenges/54862fbb3f90ac0002904cf5一種解決方案是:這只是中間的vimgolf挑戰在做什麼?
)3:wq!<CR>
我VIM小抄說:
)是 「結句」。不知道「3」如何適合。
但是「wq!」我知道寫/退出。
這組鍵擊是幹什麼的?
所以在工作http://www.vimgolf.com/challenges/54862fbb3f90ac0002904cf5一種解決方案是:這只是中間的vimgolf挑戰在做什麼?
)3:wq!<CR>
我VIM小抄說:
)是 「結句」。不知道「3」如何適合。
但是「wq!」我知道寫/退出。
這組鍵擊是幹什麼的?
命令
)3:wq!<CR>
輸入
Leave only the
numbered lines.
LINE 1
LINE 2
LINE 3
That's all.
Thank you
very much.
擊穿
) goes one sentence forward. This positions the cursor at LINE 1
3 starts a range of 3 lines for the next command.
:wq! writes the range to the file.
You should notice that when typing :, the range get's set to .,.+2
我不知道在哪裏放置:
,因爲它從普通模式切換到命令模式,以便以下故障同樣有效
) goes one sentence forward. This positions the cursor at LINE 1
3: starts a range of 3 lines and enters command line mode
wq! writes the range to the file.
You should notice that when typing :, the range get's set to .,.+2
)
把光標當前句子後,上LINE 1
。
3:command
由Vim擴展到:.,.+2command
,表示「在當前行和下兩行執行command
」。
.,.+2wq!
只將給定的行寫入文件,從緩衝區/文件中有效地刪除任何其他行。
請參閱:help range
和:help :write
。