vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit ac5e1355138f01f1bee570c39e9b7582c1ad3273 parent 898f78523331bebe6051eeb3a5e9374a898cd50f Author: Marc André Tanner <mat@brain-dump.org> Date: Sat, 20 Feb 2016 17:51:32 +0100 vis: move cursor to next char after ~ in normal mode This will not work as expected when given a count. Close #181 Diffstat:
| M | config.def.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.def.h b/config.def.h @@ -240,7 +240,7 @@ static const KeyBinding bindings_normal[] = { { "m", ACTION(MARK_SET) }, { "<F1>", ALIAS(":help<Enter>") }, { "ga", ACTION(UNICODE_INFO) }, - { "~", ALIAS("<vis-operator-case-swap>l") }, + { "~", ALIAS("<vis-operator-case-swap>ll") }, { "<End>", ALIAS("$") }, { "gf", ACTION(OPEN_FILE_UNDER_CURSOR) }, { "<C-w>gf", ACTION(OPEN_FILE_UNDER_CURSOR_NEW_WINDOW) },