1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-26 09:00:57 +02:00

added all possible custom keybindings to the documentation

This commit is contained in:
David Chen 2019-12-04 18:46:00 -08:00
parent 2ca5766f56
commit 0af8784707
2 changed files with 76 additions and 1 deletions

View File

@ -191,7 +191,11 @@ If you have issues with a light terminal theme where you can't read / see the te
![border example](/docs/resources/colored-border-example.png)
## Example Keybindings For Colemak Users:
## Keybindings:
For all possible keybinding options, check [Custom_Keybinding.md](https://github.com/jesseduffield/lazygit/blob/master/docs/keybindings/Custom_Keybinding.md) <++>
#### Example Keybindings For Colemak Users:
```yaml
keybinding:
universal:
@ -213,3 +217,4 @@ If you have issues with a light terminal theme where you can't read / see the te
moveDownCommit: '<c-e>' # move commit down one
moveUpCommit: '<c-u>' # move commit up one
```

View File

@ -0,0 +1,70 @@
## Possible keybindings
| Put in | You will get |
|---------------|----------------|
| `<c-a>` | CtrlA |
| `<c-b>` | CtrlB |
| `<c-c>` | CtrlC |
| `<c-d>` | CtrlD |
| `<c-e>` | CtrlE |
| `<c-f>` | CtrlF |
| `<c-g>` | CtrlG |
| `<c-h>` | CtrlH |
| `<c-i>` | CtrlI |
| `<c-j>` | CtrlJ |
| `<c-k>` | CtrlK |
| `<c-l>` | CtrlL |
| `<c-m>` | CtrlM |
| `<c-n>` | CtrlN |
| `<c-o>` | CtrlO |
| `<c-p>` | CtrlP |
| `<c-q>` | CtrlQ |
| `<c-r>` | CtrlR |
| `<c-s>` | CtrlS |
| `<c-t>` | CtrlT |
| `<c-u>` | CtrlU |
| `<c-v>` | CtrlV |
| `<c-w>` | CtrlW |
| `<c-x>` | CtrlX |
| `<c-y>` | CtrlY |
| `<c-z>` | CtrlZ |
| `<c-~>` | CtrlTilde |
| `<c-2>` | Ctrl2 |
| `<c-3>` | Ctrl3 |
| `<c-4>` | Ctrl4 |
| `<c-5>` | Ctrl5 |
| `<c-6>` | Ctrl6 |
| `<c-7>` | Ctrl7 |
| `<c-8>` | Ctrl8 |
| `<c-space>` | CtrlSpace |
| `<c-\\>` | CtrlBackslash |
| `<c-[>` | CtrlLsqBracket |
| `<c-]>` | CtrlRsqBracket |
| `<c-/>` | CtrlSlash |
| `<c-_>` | CtrlUnderscore |
| `<backspace>` | Backspace |
| `<tab>` | Tab |
| `<enter>` | Enter |
| `<esc>` | Esc |
| `<space>` | Space |
| `<f1>` | F1 |
| `<f2>` | F2 |
| `<f3>` | F3 |
| `<f4>` | F4 |
| `<f5>` | F5 |
| `<f6>` | F6 |
| `<f7>` | F7 |
| `<f8>` | F8 |
| `<f9>` | F9 |
| `<f10>` | F10 |
| `<f11>` | F11 |
| `<f12>` | F12 |
| `<insert>` | Insert |
| `<delete>` | Delete |
| `<home>` | Home |
| `<end>` | End |
| `<pgup>` | Pgup |
| `<pgdown>` | Pgdn |
| `<up>` | ArrowUp |
| `<down>` | ArrowDown |
| `<left>` | ArrowLeft |
| `<right>` | ArrowRight |