📜  删除键 vim - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:43.439000             🧑  作者: Mango

代码示例1
x    delete character at cursor
dw    delete a word.
d0    delete to the beginning of a line.
d$    delete to the end of a line.
d)    delete to the end of sentence.
dgg    delete to the beginning of the file.
dG    delete to the end of the file.
dd    delete line
3dd    delete three lines