summaryrefslogtreecommitdiffstats
path: root/src/conf
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2020-11-15 21:02:06 +0200
committerManos Pitsidianakis <el13635@mail.ntua.gr>2020-11-15 21:30:54 +0200
commit76f8bdc558d3df10ff575aa710160f9e52fdcadf (patch)
tree46c490203c58f9ac84a6b4dcf4d572042680bd93 /src/conf
parentd404910a0ff619361f1095b64692ad25d1fc613d (diff)
Add configurable shortcut for 'quit'
Quit ('q' button) was hardcoded, switch to configurable shortcut setting instead.
Diffstat (limited to 'src/conf')
-rw-r--r--src/conf/shortcuts.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf/shortcuts.rs b/src/conf/shortcuts.rs
index bfdfc9b9..e40b58ca 100644
--- a/src/conf/shortcuts.rs
+++ b/src/conf/shortcuts.rs
@@ -216,6 +216,7 @@ shortcut_key_values! { "general",
pub struct GeneralShortcuts {
toggle_help |> "Toggle help and shortcuts view." |> Key::Char('?'),
enter_command_mode |> "Enter COMMAND mode." |> Key::Char(':'),
+ quit |> "Quit meli." |> Key::Char('q'),
go_to_tab |> "Go to the nth tab" |> Key::Alt('n'),
next_tab |> "Next tab." |> Key::Char('T'),
scroll_right |> "Generic scroll right (catch-all setting)" |> Key::Right,