Add shortcut to add new chats

This commit is contained in:
miruka
2019-11-10 08:32:17 -04:00
parent 14ba4b50b5
commit 5d4840dcd8
4 changed files with 22 additions and 7 deletions

View File

@@ -117,9 +117,9 @@ class UISettings(JSONConfigFile):
"startMuted": False,
},
"keys": {
"startPythonDebugger": "Alt+Shift+D",
"toggleDebugConsole": "Alt+Shift+C",
"reloadConfig": "Alt+Shift+R",
"startPythonDebugger": ["Alt+Shift+D"],
"toggleDebugConsole": ["Alt+Shift+C"],
"reloadConfig": ["Alt+Shift+R"],
"scrollUp": ["Alt+Up", "Alt+K"],
"scrollDown": ["Alt+Down", "Alt+J"],
@@ -130,9 +130,10 @@ class UISettings(JSONConfigFile):
"scrollToBottom":
["Alt+Ctrl+Shift+Down", "Alt+Ctrl+Shift+J", "End"],
"focusSidePane": ["Alt+S", "Ctrl+S"],
"clearRoomFilter": ["Alt+Shift+S", "Ctrl+Shift+S"],
"addNewAccount": ["Alt+N"],
"focusSidePane": ["Alt+S", "Ctrl+S"],
"clearRoomFilter": ["Alt+Shift+S", "Ctrl+Shift+S"],
"addNewChat": ["Alt+A"],
"addNewAccount": ["Alt+Shift+A"],
"goToLastPage": ["Ctrl+Tab"],
"goToPreviousRoom": ["Alt+Shift+Up", "Alt+Shift+K"],