✏️ Change ctrl caret to be less confusing
This commit is contained in:
parent
abd70287d7
commit
55e6d45939
28
vim.md
28
vim.md
|
@ -34,7 +34,7 @@ Getting started
|
||||||
### Navigating
|
### Navigating
|
||||||
|
|
||||||
| `h` `j` `k` `l` | Arrow keys |
|
| `h` `j` `k` `l` | Arrow keys |
|
||||||
| `^u` _/_ `^d` | Page up/page down |
|
| `<C-U>` _/_ `<C-D>` | Page up/page down |
|
||||||
{: .-shortcuts}
|
{: .-shortcuts}
|
||||||
|
|
||||||
#### Words
|
#### Words
|
||||||
|
@ -79,8 +79,8 @@ Getting started
|
||||||
|
|
||||||
| Shortcut | Description |
|
| Shortcut | Description |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `Esc` _/_ `^[` | Exit insert mode |
|
| `Esc` _/_ `<C-[>` | Exit insert mode |
|
||||||
| `^c` | Exit insert mode, and abort current command |
|
| `<C-C>` | Exit insert mode, and abort current command |
|
||||||
{: .-shortcuts}
|
{: .-shortcuts}
|
||||||
|
|
||||||
### Clipboard
|
### Clipboard
|
||||||
|
@ -100,7 +100,7 @@ Getting started
|
||||||
|
|
||||||
| `v` | Enter visual mode |
|
| `v` | Enter visual mode |
|
||||||
| `V` | Enter visual line mode |
|
| `V` | Enter visual line mode |
|
||||||
| `^v` | Enter visual block mode |
|
| `<C-V>` | Enter visual block mode |
|
||||||
{: .-shortcuts}
|
{: .-shortcuts}
|
||||||
|
|
||||||
#### In visual mode
|
#### In visual mode
|
||||||
|
@ -247,16 +247,16 @@ Uppercase ones are recursive (eg, `zO` is open recursively).
|
||||||
|
|
||||||
| Shortcut | Description |
|
| Shortcut | Description |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `^O` | Go back to previous location |
|
| `<C-O>` | Go back to previous location |
|
||||||
| `^I` | Go forward |
|
| `<C-I>` | Go forward |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `gf` | go to file in cursor |
|
| `gf` | go to file in cursor |
|
||||||
{: .-shortcuts}
|
{: .-shortcuts}
|
||||||
|
|
||||||
### Counters
|
### Counters
|
||||||
|
|
||||||
| `^A` | increment number |
|
| `<C-A>` | increment number |
|
||||||
| `^X` | decrement |
|
| `<C-X>` | decrement |
|
||||||
{: .-shortcuts}
|
{: .-shortcuts}
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
@ -269,10 +269,10 @@ Uppercase ones are recursive (eg, `zO` is open recursively).
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `:tag Classname` | Jump to first definition of Classname |
|
| `:tag Classname` | Jump to first definition of Classname |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `^]` | Jump to definition |
|
| `<C-]>` | Jump to definition |
|
||||||
| `g]` | See all definitions |
|
| `g]` | See all definitions |
|
||||||
| `^t` | Go back to last tag |
|
| `<C-T>` | Go back to last tag |
|
||||||
| `^o ^i` | Back/forward |
|
| `<C-O> <C-I>` | Back/forward |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `:tselect Classname` | Find definitions of Classname |
|
| `:tselect Classname` | Find definitions of Classname |
|
||||||
| `:tjump Classname` | Find definitions of Classname (auto-select 1st) |
|
| `:tjump Classname` | Find definitions of Classname (auto-select 1st) |
|
||||||
|
@ -318,8 +318,8 @@ Do these in visual mode.
|
||||||
|
|
||||||
| Shortcut | Description |
|
| Shortcut | Description |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| `<C-r><C-w>` | insert current word into the command line |
|
| `<C-R><C-W>` | insert current word into the command line |
|
||||||
| `<C-r>"` | paste from " register |
|
| `<C-R>"` | paste from " register |
|
||||||
{: .-shortcuts}
|
{: .-shortcuts}
|
||||||
|
|
||||||
### Text alignment
|
### Text alignment
|
||||||
|
@ -332,7 +332,7 @@ See `:help formatting`
|
||||||
|
|
||||||
### Calculator
|
### Calculator
|
||||||
|
|
||||||
<C-r>=128/2
|
<C-R>=128/2
|
||||||
|
|
||||||
Do this in insert mode.
|
Do this in insert mode.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue