vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit aa550f82ab8f94e244138adc60e75d6146c25268 parent 1180215f5b8da7863d824400d3e0be2050dccdc4 Author: Marc André Tanner <mat@brain-dump.org> Date: Fri, 14 Jul 2017 12:33:25 +0200 vis: remove useless mappings which interfere with jumplist Diffstat:
| M | config.def.h | | | 2 | -- |
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/config.def.h b/config.def.h @@ -68,14 +68,12 @@ static const KeyBinding bindings_motions[] = { { "g_", ACTION(CURSOR_LINE_FINISH) }, { "G", ACTION(CURSOR_LINE_LAST) }, { "g$", ACTION(CURSOR_SCREEN_LINE_END) }, - { "g<Down>", ALIAS("gj") }, { "gE", ACTION(CURSOR_LONGWORD_END_PREV) }, { "ge", ACTION(CURSOR_WORD_END_PREV) }, { "gg", ACTION(CURSOR_LINE_FIRST) }, { "gj", ACTION(CURSOR_SCREEN_LINE_DOWN) }, { "gk", ACTION(CURSOR_SCREEN_LINE_UP) }, { "gm", ACTION(CURSOR_SCREEN_LINE_MIDDLE) }, - { "g<Up>", ALIAS("gk") }, { "h", ACTION(CURSOR_CHAR_PREV) }, { "H", ACTION(CURSOR_WINDOW_LINE_TOP) }, { "j", ACTION(CURSOR_LINE_DOWN) },