vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 4e1198d5cb3cc0c1406ff370cbe7b2b5fde7b897 parent 686f0c2be05dbf61e9fedb37b2ae96b0e9879567 Author: Marc André Tanner <mat@brain-dump.org> Date: Wed, 10 Sep 2014 22:36:48 +0200 Add normal mode command 's' Diffstat:
| M | config.def.h | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/config.def.h b/config.def.h @@ -351,6 +351,7 @@ static KeyBinding vis_normal[] = { { { NONE('v') }, switchmode, { .i = VIS_MODE_VISUAL } }, { { NONE('R') }, switchmode, { .i = VIS_MODE_REPLACE} }, { { NONE('S') }, operator_twice, { .i = OP_CHANGE } }, + { { NONE('s') }, change, { .i = MOVE_CHAR_NEXT } }, { { NONE('Y') }, operator_twice, { .i = OP_YANK } }, { { NONE('u') }, undo, { NULL } }, { { CONTROL('R') }, redo, { NULL } },