vis

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

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

commit 13cae8e395d80d884028ec25e47038828f9753aa
parent 1c10ea68036c5fde92ecc3ea664b6e4662bd3925
Author: Erlend Fagerheim <erlendf80@gmail.com>
Date:   Tue, 31 Jul 2018 12:24:53 +0200

change case in visual mode with u and U ( vim comp )

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

diff --git a/config.def.h b/config.def.h @@ -292,6 +292,8 @@ static const KeyBinding bindings_visual[] = { { "q", ACTION(MACRO_RECORD) }, { "r", ACTION(REPLACE_CHAR) }, { "s", ALIAS("c") }, + { "u", ALIAS("gu<Escape>") }, + { "U", ALIAS("gU<Escape>") }, { "V", ACTION(MODE_VISUAL_LINE) }, { "v", ALIAS("<Escape>") }, { "x", ALIAS("d") },