diff --git a/README.md b/README.md index a70cfb3..d1106e0 100644 --- a/README.md +++ b/README.md @@ -262,6 +262,7 @@ You can then configure the actions you want for each key: pagedown = "page_down" pageup = "page_up" q = "quit_view" + Q = "quit_view" r = "sort_column_rank" s = "sort_column_symbol" space = "toggle_favorite" diff --git a/cointop/shortcuts.go b/cointop/shortcuts.go index cf5911d..0b38b71 100644 --- a/cointop/shortcuts.go +++ b/cointop/shortcuts.go @@ -58,6 +58,7 @@ func defaultShortcuts() map[string]string { "u": "sort_column_last_updated", "v": "sort_column_24h_volume", "q": "quit_view", + "Q": "quit_view", "$": "last_page", "?": "help", "/": "open_search",