vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit da7edc5206a6031ba38f1f704091dbfcc21fbd60
parent 2088e7332912d94258b91e2ad4ac1e6796fe3282
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Wed, 27 Apr 2016 09:57:31 +0200

vis: do not advance cursor to next line when appending with `a`

Close #295

Diffstat:
Mmain.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.c b/main.c @@ -829,7 +829,7 @@ static const KeyAction vis_action[] = { [VIS_ACTION_APPEND_CHAR_NEXT] = { "append-char-next", "Append text after the cursor", - insertmode, { .i = VIS_MOVE_CHAR_NEXT } + insertmode, { .i = VIS_MOVE_LINE_CHAR_NEXT } }, [VIS_ACTION_APPEND_LINE_END] = { "append-line-end",