Merge pull request #253 from srihari93/patch-1

fixed an error and added a relevant cheat
This commit is contained in:
Rico Sta. Cruz 2017-11-15 23:58:42 +08:00 committed by GitHub
commit fda6e75261
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