vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 7616d3a8aef5688fea97f3cc9af043c2624a16d8 parent 7f2417079be6384db15f83bd996dfd8e89023fe8 Author: Erlend Fagerheim <erlendf80@gmail.com> Date: Mon, 26 Dec 2016 02:24:19 +0100 fix help text for next/prev match Diffstat:
| M | main.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main.c b/main.c @@ -561,12 +561,12 @@ static const KeyAction vis_action[] = { }, [VIS_ACTION_CURSOR_SEARCH_NEXT] = { "cursor-search-forward", - "Move cursor to bottom line of the window", + "Move cursor to next match", movement, { .i = VIS_MOVE_SEARCH_NEXT } }, [VIS_ACTION_CURSOR_SEARCH_PREV] = { "cursor-search-backward", - "Move cursor to bottom line of the window", + "Move cursor to previous match", movement, { .i = VIS_MOVE_SEARCH_PREV } }, [VIS_ACTION_CURSOR_SEARCH_WORD_FORWARD] = {