summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-08-27 11:07:24 +0100
committerMaxime Coste <frrrwww@gmail.com>2016-08-27 11:07:24 +0100
commit093d3bd0dfa766007d0efae414f1b464d7b2a189 (patch)
tree19cf5a20f8055facd4e7e5dce1277218224d5d9c /src/normal.cc
parent0c444c3f4b5c7c14b4d6e82ca5426a5f9f93b666 (diff)
Map tab to jump forward until we can distinguish <c-i> from it
Fixes #769
Diffstat (limited to 'src/normal.cc')
-rw-r--r--src/normal.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.cc b/src/normal.cc
index f7efdfa7..117d681c 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -1732,7 +1732,7 @@ static NormalCmdDesc cmds[] =
{ alt('>'), "indent, including empty lines", indent<true> },
{ alt('<'), "deindent, not including incomplete indent", deindent<false> },
- { ctrl('i'), "jump forward in jump list",jump<Forward> },
+ { /*ctrl('i')*/Key::Tab, "jump forward in jump list",jump<Forward> }, // until we can distinguish tab a ctrl('i')
{ ctrl('o'), "jump backward in jump list", jump<Backward> },
{ ctrl('s'), "push current selections in jump list", push_selections },