Merge pull request #44 from ricmatsui/feature/avoid-tab-search-conflict

Ignore Cmd/Ctrl+Shift+A to avoid conflict with Chrome tab search shortcut
This commit is contained in:
Mohamad Tarbin
2026-01-17 19:37:59 -05:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -110,6 +110,7 @@ const ArchivedTasks = () => {
// Ctrl/Cmd + A to select all
if (
isHoldingCmdOrCtrl &&
!event.shiftKey &&
event.key === 'a' &&
!['INPUT', 'TEXTAREA'].includes(document.activeElement.tagName)
) {

View File

@@ -379,6 +379,7 @@ const MyChores = () => {
// Ctrl/Cmd + A to select all - works both in and out of multi-select mode
else if (
isHoldingCmdOrCtrl &&
!event.shiftKey &&
event.key === 'a' &&
!['INPUT', 'TEXTAREA'].includes(document.activeElement.tagName)
) {