Map tab to jump forward until we can distinguish <c-i> from it

Fixes #769
This commit is contained in:
Maxime Coste 2016-08-27 11:07:24 +01:00
parent 0c444c3f4b
commit 093d3bd0df

View File

@ -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 },