Vim
A lightweight text editor featuring modal operation, unlocking true productivity with overwhelming editing speed once mastered
Shortcuts that dramatically streamline text editing with fast editing techniques like line deletion, copying, and pasting
d+d
Delete line
Deletes the current line.
💡 Hint: delete double
🎯 Quickly delete entire lines for efficient text organization
d+w
Delete word
Deletes word from cursor.
💡 Hint: delete word
🎯 Delete by word to speed up detailed editing work
y+y
Yank line
Copies the current line.
💡 Hint: yank
🎯 Quickly copy lines to efficiently reuse same content
p
Paste after
Pastes after cursor position.
💡 Hint: paste
🎯 Paste copied content at appropriate position to accelerate editing
J
Join lines
Joins current line with next line.
💡 Hint: Join
🎯 Join multiple lines to efficiently format text
>+>
Indent
Indents the current line.
💡 Hint: > shifts right
🎯 Adjust line indentation to improve code readability
~
Toggle case
Toggles case of character at cursor.
💡 Hint: ~ (tilde) toggles
🎯 Toggle case for flexible text editing
r+文字
Replace character
Replaces character at cursor.
💡 Hint: replace
🎯 Instantly replace single character for fast minor corrections