aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorErlend Fagerheim <erlendf80@gmail.com>2018-07-31 12:24:53 +0200
committerErlend Fagerheim <erlendf80@gmail.com>2018-07-31 12:24:53 +0200
commit5dc705e81b16e82ac8e4f5679a64acabd266e1c6 (patch)
tree280894c9cf1f85020e5410cd2c17d8c4a4379582 /config.def.h
parenta4b64c5c396646bb2f14db3b4145a5482a2ff8bf (diff)
downloadvis-5dc705e81b16e82ac8e4f5679a64acabd266e1c6.tar.gz
vis-5dc705e81b16e82ac8e4f5679a64acabd266e1c6.tar.xz
change case in visual mode with u and U ( vim comp )
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 9e055df..77476a8 100644
--- 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") },