update vim

This commit is contained in:
Anmol Pandita 2022-05-08 16:32:14 +05:30
parent 1ca4a33396
commit f33aba45fc

View File

@ -17,7 +17,7 @@ tags:
# Navigation
| | |
| ---------------------------------- | -------------------------------------------- |
| h j k l | ⃪ ↓ ↑ → |
| h j k l | ⃪ ↓ ↑ → |
| 0 | to the `start` of the line |
| $ (Shit + 4) | to the `end` of the line |
| e | to `end` of word |
@ -31,4 +31,28 @@ tags:
| zz | re-center |
# Text manipulation
| | |
| --- | --------------------------------------------- |
| x | delete at the cursor (→ in normal mode still) |
| i | insert before the cursor |
| I | insert beginning of the line |
| a | insert after the cursor |
| A | append after the line |
| o | open line above |
| O | open line below |
| s | delete character and insert |
| S | delete line and insert |
| R overstrike mode | replace text character by character (max 1 line) |
| c *<`movement`>* wW / bB / 2j / $/ 0 | change till (→ in insert mode now) | cc - change one line |
| d *<`movement`>* wW / bB / 2j / $/ 0 | delete till (→ in normal mode still) | dd - delete one line ... |
| r | replace single character (→ dont have to press ESC) |
| *<`number`>* ~ | change letter case |
> Remember - **(command)*(number)(text object)****