Change history menu keybinding from ctrl+x to ctrl+r (#5507)

* Change history menu keybinding to ctrl+r from ctrl+x

* Remove menupage actions from default config

* remove trailing whitespace

* re-add next+previous page keybindings

* Remove hardcoded menu keybindings

* Hardcode new keybindings
This commit is contained in:
Reilly Wood
2022-05-13 07:26:14 -07:00
committed by GitHub
parent 1aec4a343a
commit f818193b53
2 changed files with 19 additions and 15 deletions

View File

@ -501,14 +501,16 @@ fn add_menu_keybindings(keybindings: &mut Keybindings) {
ReedlineEvent::MenuPrevious,
);
// History menu keybinding
keybindings.add_binding(
KeyModifiers::CONTROL,
KeyCode::Char('r'),
ReedlineEvent::Menu("history_menu".to_string()),
);
keybindings.add_binding(
KeyModifiers::CONTROL,
KeyCode::Char('x'),
ReedlineEvent::UntilFound(vec![
ReedlineEvent::Menu("history_menu".to_string()),
ReedlineEvent::MenuPageNext,
]),
ReedlineEvent::MenuPageNext,
);
keybindings.add_binding(