vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit a683a8dbc4ea685ad377cb4404334f037385afe3 parent c4383df6de64e8535042c8f75543d38afc4ab045 Author: Marc André Tanner <mat@brain-dump.org> Date: Sun, 17 Jan 2016 13:57:37 +0100 vis: let ~ have an immediate effect in normal mode Similar to vim with the notildeop setting. Diffstat:
| M | config.def.h | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/config.def.h b/config.def.h @@ -231,6 +231,7 @@ static const KeyBinding bindings_normal[] = { { "P", ACTION(PUT_BEFORE) }, { "gp", ACTION(PUT_AFTER_END) }, { "gP", ACTION(PUT_BEFORE_END) }, + { "~", ALIAS("<vis-operator-case-swap>l") }, { 0 /* empty last element, array terminator */ }, };