Implement jump-to-matching-bracket motion and bind % (percent) in vi mode

Part of #1842
This commit is contained in:
Nikita Bobko
2024-06-28 23:23:36 +02:00
committed by Peter Ammon
parent c966c19c56
commit f8ebe346a9
6 changed files with 81 additions and 0 deletions

View File

@@ -178,6 +178,7 @@ const fn make_md(name: &'static wstr, code: ReadlineCmd) -> InputFunctionMetadat
make_md(L!("history-token-search-forward"), ReadlineCmd::HistoryTokenSearchForward),
make_md(L!("insert-line-over"), ReadlineCmd::InsertLineOver),
make_md(L!("insert-line-under"), ReadlineCmd::InsertLineUnder),
make_md(L!("jump-to-matching-bracket"), ReadlineCmd::JumpToMatchingBracket),
make_md(L!("kill-bigword"), ReadlineCmd::KillBigword),
make_md(L!("kill-inner-line"), ReadlineCmd::KillInnerLine),
make_md(L!("kill-line"), ReadlineCmd::KillLine),