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;