From 2501584db68a779d30c2949a637a15443323992d Mon Sep 17 00:00:00 2001 From: david yang Date: Thu, 4 Feb 2021 17:36:39 -0500 Subject: [PATCH] Add keyboard shortcut to match other MacOS Chat Apps (#4719) MacOS Messages and WhatsApp (amongst other messaging apps) use this Cmd + Shift + [/] to switch between convos. Would be great to have that in Signal as well. --- ts/background.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/background.ts b/ts/background.ts index cbfd33e979..e5fcbe2045 100644 --- a/ts/background.ts +++ b/ts/background.ts @@ -1146,6 +1146,7 @@ type WhatIsThis = import('./window.d').WhatIsThis; // up/previous if ( (!isSearching && optionOrAlt && !shiftKey && key === 'ArrowUp') || + (!isSearching && commandOrCtrl && shiftKey && key === '[') || (!isSearching && ctrlKey && shiftKey && key === 'Tab') ) { const unreadOnly = false; @@ -1165,6 +1166,7 @@ type WhatIsThis = import('./window.d').WhatIsThis; // down/next if ( (!isSearching && optionOrAlt && !shiftKey && key === 'ArrowDown') || + (!isSearching && commandOrCtrl && shiftKey && key === ']') || (!isSearching && ctrlKey && key === 'Tab') ) { const unreadOnly = false;