fixed an error and added a relevant cheat

noticed it because of a comment at https://devhints.io/vim where this sheet is referenced
This commit is contained in:
Sri Hari Raju Penmatsa 2017-11-10 00:07:37 +01:00 committed by GitHub
parent 6bfd554ce9
commit f5c644ae07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

17
vim.md
View File

@ -294,14 +294,15 @@ Do these in visual mode.
### Marks
| Shortcut | Description |
| --- | --- |
| <code>`^</code> | Last position of cursor in insert mode |
| <code>`.</code> | Last change |
| <code>``</code> | Last jump |
| --- | --- |
| `ma` | Mark this cursor position as `a` |
| `'a` | Jump to cursor position `a` |
| Shortcut | Description |
| --- | --- |
| <code>`^</code> | Last position of cursor in insert mode |
| <code>`.</code> | Last change |
| <code>``</code> | Last jump |
| --- | --- |
| `ma` | Mark this cursor position as `a` |
| <code>`a</code> | Jump to the cursor position `a` |
| `'a` | Jump to the beginning of the line with position `a`|
{: .-shortcuts}
### Misc