-
Notifications
You must be signed in to change notification settings - Fork 4
Mingtao edited this page Aug 14, 2019
·
4 revisions
Command | Description |
---|---|
dd | Delete a line |
dd p | Move a line |
yy p | Duplicate a line |
dw | Delete a word |
0 | Beginning of a line |
$ | End of a line |
A | End of a line and insert |
w | Move forward a word |
b | Move backward a word |
u | Undo |
b | Move backward a word |
o/O | Add a new line and insert mode |
ZZ | Save and exit, same as :wq |