vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit e54b5a92df0806d2508717c6241375537c701b3c parent 6ffc8df068cea514469e5fa81d3a7d66f190eba9 Author: Marc André Tanner <mat@brain-dump.org> Date: Tue, 8 Mar 2016 23:19:50 +0100 Add missing angle brackets around broken C-p key binding Diffstat:
| M | config.def.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.def.h b/config.def.h @@ -31,7 +31,7 @@ static const KeyBinding bindings_motions[] = { { "l", ACTION(CURSOR_CHAR_NEXT) }, { " ", ALIAS("l") }, { "k", ACTION(CURSOR_LINE_UP) }, - { "C-p", ALIAS("k") }, + { "<C-p>", ALIAS("k") }, { "j", ACTION(CURSOR_LINE_DOWN) }, { "<C-j>", ALIAS("j") }, { "<C-n>", ALIAS("j") },