vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit f0114596f6142949de18c7da7c27d873a029ff65 parent b7ea41b39786138c0f2c31290f09e00546453c49 Author: Marc André Tanner <mat@brain-dump.org> Date: Sun, 26 Jul 2020 10:57:05 +0200 vis: remove window related aliases from default config Diffstat:
| M | config.def.h | | | 7 | ------- |
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/config.def.h b/config.def.h @@ -199,13 +199,7 @@ static const KeyBinding bindings_normal[] = { { "<C-p>", ACTION(SELECTIONS_REMOVE_LAST) }, { "<C-r>", ACTION(REDO) }, { "<C-u>", ACTION(SELECTIONS_PREV) }, - { "<C-w><Backspace>", ALIAS("<C-w>k") }, { "<C-w>c", ALIAS(":q<Enter>") }, - { "<C-w><C-h>", ALIAS("<C-w>k") }, - { "<C-w><C-j>", ALIAS("<C-w>j") }, - { "<C-w><C-k>", ALIAS("<C-w>k") }, - { "<C-w><C-l>", ALIAS("<C-w>j") }, - { "<C-w><C-w>", ALIAS("<C-w>j") }, { "<C-w>h", ALIAS("<C-w>k") }, { "<C-w>j", ACTION(WINDOW_NEXT) }, { "<C-w>k", ACTION(WINDOW_PREV) }, @@ -213,7 +207,6 @@ static const KeyBinding bindings_normal[] = { { "<C-w>n", ALIAS(":open<Enter>") }, { "<C-w>s", ALIAS(":split<Enter>") }, { "<C-w>v", ALIAS(":vsplit<Enter>") }, - { "<C-w>w", ALIAS("<C-w>j") }, { "<C-y>", ACTION(WINDOW_SLIDE_DOWN) }, { "D", ALIAS("d$") }, { "<Escape>", ACTION(MODE_NORMAL_ESCAPE) },