- Command palette: showing commands-specific shortcuts hints
- Added back support for collapsing/expanding tags in the sidebar with a double-click
- Resolving “CmdOrCtrl” in default shortcuts ahead of time, showing cleaner default shortcuts in the shortcuts editor
- Resolving some static “when” expressions in default shortcuts ahead of time, ensuring these shortcuts aren’t displayed in the default shortcuts editor
- Mapping “CmdOrCtrl+Alt+Z” to “edit.redo” and “editor.redo” on Windows and Linux too
- Aligned palette-related shortcuts more with vscode's
- New command: palette.searchWithCurrent
- Mapping CmdOrCtrl+R to palette.searchWithCurrent while the search bar is in focus (a bit of a nod to FZF)
- Mapping CmdOrCtrl+Esc to view.reset only on macOS, as other platforms handle this shortcut at the OS-level
- Mapping “Esc Esc” to view.reset too
- Mapping Ctrl+H/Ctrl+Shift+H rather than Alt+Tab/Alt+Shift+Tab on Windows and Linux for navigating headings, as the latter shortcuts conflicted with the OS
- Mapping “CmdOrCtrl+K CmdOrCtrl+H” to opening the palette and searching for headings
- Mapping Ctrl+Alt+T/Ctrl+Alt+Shift+T rather than CmdOrCtrl+Alt+Tab/CmdOrCtrl+Alt+Shift+Tab on Windows and Linux for navigating tags, as the latter shortcuts conflicted with the OS
- Mapped “CmdOrCtrl+K CmdOrCtrl+J” to “editor.unfold.all” too for better alignment with vscode
- Unbound Ctrl+A/Ctrl+E for line navigation in the editor from Windows and Linux, as they conflict with other things
- Mapped CtrlOrCmd+U to editor.cursor.undo too for better alignment with vscode (plus thats’s a command that deserves an easier shortcut)
- Mapping CtrlOrCmd+Left/CtrlOrCmd+Right only on macOS
- Updated 15 shortcuts related to the editor for better alignment with vscode and OS-level expectations (Windows & Linux)
- Avoiding using “CmdOrCtrl” on shortcuts defined only for macOS or non-macOS
- Mapped Home/End to quickPick.item.first/quickPick.item.last
- Mapping PageUp/PageDown to quickPick.item.previous/quickPick.item.next rather than quickPick.item.first/quickPick.item.last, aligning this usage of PageUp/PageDown with the rest of the shortcuts
- Mapping Home, End, PageUp and PageDown for natigating search results when the search bar is focused
- Mapping Ctrl+Home/Ctrl+End to tab.first/tab.last when no editable element is in focus
- Reimplemented tags navigation properly, in a way that doesn’t depend on the state of the DOM
- New commands: tag.first, tag.last
- Mapped Ctrl+Alt+Home/Ctrl+Alt+End to tag.first/tag.last
- Added support for shortcuts containing only modifiers
- Mapping “Alt” to view.menubar.toggle on Windows and Linux
- Minor changes