aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-04-04 13:02:25 +0200
committerMarc André Tanner <mat@brain-dump.org>2016-04-04 13:15:04 +0200
commit8f36d16d25bc30fdf4140b7e803608ce9de923b0 (patch)
treef6f26b78f8863b97004856a5eb48b916f5a95fda /config.def.h
parent1c1bf5b321f57dd6df728b483a848c6000c9ddb0 (diff)
downloadvis-8f36d16d25bc30fdf4140b7e803608ce9de923b0.tar.gz
vis-8f36d16d25bc30fdf4140b7e803608ce9de923b0.tar.xz
vis: in visual mode allow navigation among cursors using <C-j> and <C-k>
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 c29ce64..0af24fd 100644
--- a/config.def.h
+++ b/config.def.h
@@ -273,6 +273,8 @@ static const KeyBinding bindings_visual[] = {
{ "<C-f>", ALIAS("<PageDown>") },
{ "<C-u>", ACTION(CURSORS_PREV) },
{ "<C-d>", ACTION(CURSORS_NEXT) },
+ { "<C-k>", ALIAS("<C-u>") },
+ { "<C-j>", ALIAS("<C-d>") },
{ "x", ALIAS("d") },
{ "r", ALIAS("c") },
{ "s", ALIAS("c") },