|
|
@@ -74,6 +74,11 @@ type GuildsTreeKeybinds struct {
|
|
|
|
|
|
CollapseParentNode Keybind `toml:"collapse_parent_node"`
|
|
|
MoveToParentNode Keybind `toml:"move_to_parent_node"`
|
|
|
+
|
|
|
+ ArrowUp Keybind `toml:"arrow_up"`
|
|
|
+ ArrowDown Keybind `toml:"arrow_down"`
|
|
|
+ ArrowLeft Keybind `toml:"arrow_left"`
|
|
|
+ ArrowRight Keybind `toml:"arrow_right"`
|
|
|
}
|
|
|
|
|
|
type MessagesListKeybinds struct {
|
|
|
@@ -95,6 +100,11 @@ type MessagesListKeybinds struct {
|
|
|
Search Keybind `toml:"search"`
|
|
|
OpenThread Keybind `toml:"open_thread"`
|
|
|
|
|
|
+ ArrowUp Keybind `toml:"arrow_up"`
|
|
|
+ ArrowDown Keybind `toml:"arrow_down"`
|
|
|
+ ArrowLeft Keybind `toml:"arrow_left"`
|
|
|
+ ArrowRight Keybind `toml:"arrow_right"`
|
|
|
+
|
|
|
YankContent Keybind `toml:"yank_content"`
|
|
|
YankURL Keybind `toml:"yank_url"`
|
|
|
YankID Keybind `toml:"yank_id"`
|
|
|
@@ -169,6 +179,10 @@ func defaultGuildsTreeKeybinds() GuildsTreeKeybinds {
|
|
|
YankID: newKeybind("i", "copy id"),
|
|
|
CollapseParentNode: newKeybind("-", "collapse"),
|
|
|
MoveToParentNode: newKeybind("p", "parent"),
|
|
|
+ ArrowUp: newKeybind("up", "up"),
|
|
|
+ ArrowDown: newKeybind("down", "down"),
|
|
|
+ ArrowLeft: newKeybind("left", "left"),
|
|
|
+ ArrowRight: newKeybind("right", "right"),
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -201,6 +215,10 @@ func defaultMessagesListKeybinds() MessagesListKeybinds {
|
|
|
UserInfo: newKeybind("w", "who"),
|
|
|
Search: newKeybind("/", "search"),
|
|
|
OpenThread: newKeybind("t", "thread"),
|
|
|
+ ArrowUp: newKeybind("up", "up"),
|
|
|
+ ArrowDown: newKeybind("down", "down"),
|
|
|
+ ArrowLeft: newKeybind("left", "left"),
|
|
|
+ ArrowRight: newKeybind("right", "right"),
|
|
|
YankContent: newKeybind("y", "copy text"),
|
|
|
YankURL: newKeybind("u", "copy url"),
|
|
|
YankID: newKeybind("i", "copy id"),
|