vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 2d5b199f691007def544c3eeb0a9d8044d7aa1d8 parent 6de2a9f5383d9b4f734609544f2f020108546a88 Author: Marc André Tanner <mat@brain-dump.org> Date: Wed, 14 Oct 2015 22:28:03 +0200 vis: fix name clash of keyboard actions Diffstat:
| M | config.def.h | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config.def.h b/config.def.h @@ -457,12 +457,12 @@ static KeyAction vis_action[] = { switchmode, { .i = VIS_MODE_NORMAL } }, [VIS_ACTION_MODE_VISUAL] = { - "vis-mode-visual", + "vis-mode-visual-charwise", "Enter characterwise visual mode", switchmode, { .i = VIS_MODE_VISUAL } }, [VIS_ACTION_MODE_VISUAL_LINE] = { - "vis-mode-visual", + "vis-mode-visual-linewise", "Enter linewise visual mode", switchmode, { .i = VIS_MODE_VISUAL_LINE } },