Mercurial > forks > helix
changeset 6829:06c33a969fde draft
Remove 'tab' from normal mode keymap
This is properly handled by Kitty.
author | Michael Davis <mcarsondavis@gmail.com> |
---|---|
date | Fri, 22 Mar 2024 13:50:52 -0400 |
parents | aed55b52115e |
children | 6d53f85cde2b |
files | book/src/generated/static-cmd.md helix-term/src/keymap/default.rs |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/book/src/generated/static-cmd.md Fri Mar 22 11:29:45 2024 -0400 +++ b/book/src/generated/static-cmd.md Fri Mar 22 13:50:52 2024 -0400 @@ -222,7 +222,7 @@ | `select_prev_sibling` | Select previous sibling the in syntax tree | normal: `` <A-p> ``, `` <A-left> ``, select: `` <A-p> ``, `` <A-left> `` | | `select_all_siblings` | Select all siblings of the current node | normal: `` <A-a> ``, select: `` <A-a> `` | | `select_all_children` | Select all children of the current node | normal: `` <A-I> ``, `` <S-A-down> ``, select: `` <A-I> ``, `` <S-A-down> `` | -| `jump_forward` | Jump forward on jumplist | normal: `` <C-i> ``, `` <tab> ``, select: `` <C-i> ``, `` <tab> `` | +| `jump_forward` | Jump forward on jumplist | normal: `` <C-i> ``, select: `` <C-i> `` | | `jump_backward` | Jump backward on jumplist | normal: `` <C-o> ``, select: `` <C-o> `` | | `save_selection` | Save current selection to jumplist | normal: `` <C-s> ``, select: `` <C-s> `` | | `jump_view_right` | Jump to right split | normal: `` <C-w>l ``, `` <space>wl ``, `` <C-w><C-l> ``, `` <C-w><right> ``, `` <space>w<C-l> ``, `` <space>w<right> ``, select: `` <C-w>l ``, `` <space>wl ``, `` <C-w><C-l> ``, `` <C-w><right> ``, `` <space>w<C-l> ``, `` <space>w<right> `` |
--- a/helix-term/src/keymap/default.rs Fri Mar 22 11:29:45 2024 -0400 +++ b/helix-term/src/keymap/default.rs Fri Mar 22 13:50:52 2024 -0400 @@ -216,7 +216,7 @@ // z family for save/restore/combine from/to sels from register - "C-i" | "tab" => jump_forward, // tab == <C-i> + "C-i" => jump_forward, "C-o" => jump_backward, "C-s" => save_selection,