vis

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

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

commit 686f0c2be05dbf61e9fedb37b2ae96b0e9879567
parent bca1971b03a76e53cef529107d05103702f6c102
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Wed, 10 Sep 2014 22:36:25 +0200

Add movement 'W'

Diffstat:
Mconfig.def.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -112,6 +112,7 @@ static KeyBinding vis_movements[] = { { { NONE('b') }, movement, { .i = MOVE_WORD_START_PREV } }, { { NONE('B') }, movement, { .i = MOVE_WORD_START_PREV } }, { { NONE('w') }, movement, { .i = MOVE_WORD_START_NEXT } }, + { { NONE('W') }, movement, { .i = MOVE_WORD_START_NEXT } }, { { NONE('g'), NONE('e') }, movement, { .i = MOVE_WORD_END_PREV } }, { { NONE('e') }, movement, { .i = MOVE_WORD_END_NEXT } }, { { NONE('E') }, movement, { .i = MOVE_WORD_END_NEXT } },