Vim
Keyboard bindings
Command mode
| Binding | Action | Notes |
|---|---|---|
{n}yy | copy n lines, starting from cursor | |
{n}dd | delete n lines, starting from cursor | |
p | paste after the cursor | |
P | paste before the cursor | |
"+p | paste from system clipboard |
Visual mode
| Binding | Action | Notes |
|---|---|---|
v | enter visual mode | Select text by moving cursor |
V | enter visual line mode | Select lines by moving cursor |
ctrl+v | enter visual block mode | Select block... |
y | copy selection | |
d | delete selection | |
p | paste after the cursor | |
P | paste before the cursor |