Skip to content

fix(web): clean up now view shortcuts — labels, key sequences, and platform tooltip#1807

Open
HirenGajjar wants to merge 1 commit into
SwitchbackTech:mainfrom
HirenGajjar:fix/shortcut-labels-and-keys
Open

fix(web): clean up now view shortcuts — labels, key sequences, and platform tooltip#1807
HirenGajjar wants to merge 1 commit into
SwitchbackTech:mainfrom
HirenGajjar:fix/shortcut-labels-and-keys

Conversation

@HirenGajjar
Copy link
Copy Markdown

Fixes #1791

  • Remove Logout shortcut from day/week sidebar (it's already in the command palette)
  • Rename 'Toggle sidebar' → 'Close sidebar'
  • Rename 'Toggle shortcuts' → 'Show shortcuts'
  • Change edit description shortcut from e to e d sequence
  • Change edit reminder shortcut from r to e r sequence
  • Move reminder shortcut from Global list to Now list
  • Show platform-aware modifier key (⌘ on Mac, Ctrl on Windows) on save tooltip
  • Remove now-unused isAuthenticated param from getShortcuts and its callers

navigator.platform.toUpperCase().includes("MAC")
? "⌘+Enter"
: "Ctrl+Enter"
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plz use the icons instead of just the text. Additionally, it should have a space between the elements so it looks more like this:

+ Enter (except instead of ⌘ it's the command icon)

This will help us give the user a consistent experience.

Copy link
Copy Markdown
Contributor

@tyler-dane tyler-dane left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pretty close, just a few requests

- Remove Logout shortcut from day/week sidebar (accessible via cmd palette)
- Rename 'Toggle sidebar' to 'Close sidebar'
- Rename 'Toggle shortcuts' to 'Show shortcuts'
- Change edit description shortcut from e to e d sequence
- Change edit reminder shortcut from r to e r sequence
- Move reminder shortcut from global to now view
- Show platform-aware key (⌘ or Ctrl) on save tooltip
- Remove unused isAuthenticated from getShortcuts and callers
@HirenGajjar HirenGajjar force-pushed the fix/shortcut-labels-and-keys branch from 0e35757 to 30e8f0c Compare May 22, 2026 18:33
@HirenGajjar
Copy link
Copy Markdown
Author

Updated — using ShortCutLabel with k="Mod" now, renders the right icon per platform.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Shortcut labels are confusing

2 participants