|
@@ -116,6 +116,7 @@ type Keybinds struct {
|
|
|
ToggleGuildsTree Keybind `toml:"toggle_guilds_tree"`
|
|
ToggleGuildsTree Keybind `toml:"toggle_guilds_tree"`
|
|
|
ToggleChannelsPicker Keybind `toml:"toggle_channels_picker"`
|
|
ToggleChannelsPicker Keybind `toml:"toggle_channels_picker"`
|
|
|
ToggleHelp Keybind `toml:"toggle_help"`
|
|
ToggleHelp Keybind `toml:"toggle_help"`
|
|
|
|
|
+ EditConfig Keybind `toml:"edit_config"`
|
|
|
Suspend Keybind `toml:"suspend"`
|
|
Suspend Keybind `toml:"suspend"`
|
|
|
|
|
|
|
|
FocusGuildsTree Keybind `toml:"focus_guilds_tree"`
|
|
FocusGuildsTree Keybind `toml:"focus_guilds_tree"`
|
|
@@ -226,7 +227,8 @@ func defaultKeybinds() Keybinds {
|
|
|
return Keybinds{
|
|
return Keybinds{
|
|
|
ToggleGuildsTree: newKeybind("ctrl+b", "toggle guilds"),
|
|
ToggleGuildsTree: newKeybind("ctrl+b", "toggle guilds"),
|
|
|
ToggleChannelsPicker: newKeybind("ctrl+k", "channels picker"),
|
|
ToggleChannelsPicker: newKeybind("ctrl+k", "channels picker"),
|
|
|
- ToggleHelp: newKeybind("ctrl+.", "help"),
|
|
|
|
|
|
|
+ ToggleHelp: newKeybind("?", "help"),
|
|
|
|
|
+ EditConfig: newKeybind("E", "edit config"),
|
|
|
Suspend: newKeybind("ctrl+z", "suspend"),
|
|
Suspend: newKeybind("ctrl+z", "suspend"),
|
|
|
|
|
|
|
|
FocusGuildsTree: newKeybind("ctrl+g", "guilds"),
|
|
FocusGuildsTree: newKeybind("ctrl+g", "guilds"),
|