vis

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

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

commit 766158324bbd98d9da5c70d5cd4fec9b0dc16d64
parent 1da832866d1b7165d2cd6b4f562dbfe7e424a2b4
Author: Josh Wainwright <josh.wainwright@ldra.com>
Date:   Mon, 11 Apr 2016 10:16:59 +0100

main.c: correct name of function, cursor>window

"open-file-under-cursor-new-cursor" should be
"open-file-under-cursor-new-window"

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

diff --git a/main.c b/main.c @@ -1171,7 +1171,7 @@ static const KeyAction vis_action[] = { open_file_under_cursor, { .b = false } }, [VIS_ACTION_OPEN_FILE_UNDER_CURSOR_NEW_WINDOW] = { - "open-file-under-cursor-new-cursor", + "open-file-under-cursor-new-window", "Open file under the cursor in a new window", open_file_under_cursor, { .b = true } },