diff --git a/CHANGELOG.md b/CHANGELOG.md index d091393..c8c2a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Center text automatically, removing `left_margin` from the config (#233) - `max_width` defaults to 80 columns instead of 100 (#233) - Tabs have the domain of the current page instead of numbers (#202) +- Closing Amfora with q was removed in favor of Shift-q (#243) ### Fixed - Modal can't be closed when opening non-gemini text URLs from the commandline (#283, #284) diff --git a/config/config.go b/config/config.go index 4c80b30..9c3acb6 100644 --- a/config/config.go +++ b/config/config.go @@ -228,7 +228,7 @@ func Init() error { viper.SetDefault("keybindings.bind_close_tab", "Ctrl-W") viper.SetDefault("keybindings.bind_next_tab", "F2") viper.SetDefault("keybindings.bind_prev_tab", "F1") - viper.SetDefault("keybindings.bind_quit", []string{"Ctrl-C", "Ctrl-Q", "q"}) + viper.SetDefault("keybindings.bind_quit", []string{"Ctrl-C", "Ctrl-Q", "Q"}) viper.SetDefault("keybindings.bind_help", "?") viper.SetDefault("keybindings.bind_link1", "1") viper.SetDefault("keybindings.bind_link2", "2")