diff --git a/src/normal.cc b/src/normal.cc index 8d2ed82c..a512f8d0 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -2355,7 +2355,8 @@ static constexpr HashMap { {alt('>')}, {"indent, including empty lines", indent} }, { {alt('<')}, {"deindent, not including incomplete indent", deindent} }, - { {/*ctrl('i')*/Key::Tab}, {"jump forward in jump list",jump} }, // until we can distinguish tab a ctrl('i') + { {ctrl('i')}, {"jump forward in jump list",jump} }, + { {Key::Tab}, {"jump forward in jump list",jump} }, // legacy terminals encode / the same way { {ctrl('o')}, {"jump backward in jump list", jump} }, { {ctrl('s')}, {"push current selections in jump list", push_selections} },