Fix up some tables

This commit is contained in:
Rico Sta. Cruz 2018-03-15 17:44:48 +08:00
parent 0ca267e8e0
commit f1d1abd59d
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 17 additions and 11 deletions

28
vim.md
View File

@ -45,25 +45,31 @@ Getting started
#### Line
| `0` _(zero)_ | Start of line |
| `^` | Start of line _(after whitespace)_ |
| `$` | End of line |
| Shortcut | Description |
| --- | --- |
| `0` _(zero)_ | Start of line |
| `^` | Start of line _(after whitespace)_ |
| `$` | End of line |
{: .-shortcuts}
#### Document
| `gg` | First line |
| `G` | Last line |
| `:n` | Go to line `n` |
| `nG` | Go to line `n` |
| Shortcut | Description |
| --- | --- |
| `gg` | First line |
| `G` | Last line |
| `:n` | Go to line `n` |
| `nG` | Go to line `n` |
{: .-shortcuts}
#### Window
| `zz` | Center this line |
| `H` | Move to top of screen |
| `M` | Move to middle of screen |
| `L` | Move to bottom of screen |
| Shortcut | Description |
| --- | --- |
| `zz` | Center this line |
| `H` | Move to top of screen |
| `M` | Move to middle of screen |
| `L` | Move to bottom of screen |
{: .-shortcuts}