|
|
@@ -143,6 +143,8 @@ type Keybinds struct {
|
|
|
FocusPrevious Keybind `toml:"focus_previous"`
|
|
|
FocusNext Keybind `toml:"focus_next"`
|
|
|
|
|
|
+ Back Keybind `toml:"back"`
|
|
|
+
|
|
|
Picker PickerKeybinds `toml:"picker"`
|
|
|
GuildsTree GuildsTreeKeybinds `toml:"guilds_tree"`
|
|
|
MessagesList MessagesListKeybinds `toml:"messages_list"`
|
|
|
@@ -271,6 +273,8 @@ func defaultKeybinds() Keybinds {
|
|
|
FocusPrevious: newKeybind("h", "focus prev"),
|
|
|
FocusNext: newKeybind("l", "focus next"),
|
|
|
|
|
|
+ Back: newKeybind("b", "back"),
|
|
|
+
|
|
|
CommandMode: newKeybind(":", "command"),
|
|
|
Logout: newKeybind("ctrl+d", "logout"),
|
|
|
Quit: newKeybind("ctrl+c", "quit"),
|