Skip to content

Keyboard Shortcuts

All shortcuts use Cmd on macOS and Ctrl on Windows/Linux unless stated otherwise. Shortcuts are customizable in Preferences > Shortcuts.

ActionmacOSWindows/LinuxNotes
Save FileCmd+SCtrl+S
Save AsCmd+Shift+SCtrl+Shift+SDesktop only (Tauri menu)
Open FileCmd+OCtrl+ODesktop only (Tauri menu)
Open WorkspaceCmd+Shift+OCtrl+Shift+ODesktop only (Tauri menu)
New FileCmd+NCtrl+N
New FolderCmd+Shift+NCtrl+Shift+N
New CanvasCmd+Shift+CCtrl+Shift+C
Close TabCmd+WCtrl+W
Close WindowCmd+Shift+WCtrl+Shift+WDesktop only (Tauri menu)
Reopen Closed TabCmd+Shift+TCtrl+Shift+T
Next TabCtrl+TabCtrl+Tab
Previous TabCtrl+Shift+TabCtrl+Shift+Tab
PrintCmd+PCtrl+P
ActionmacOSWindows/LinuxNotes
Command PaletteCmd+KCtrl+K
Toggle Left Sidebar (Files)Cmd+BCtrl+B
Toggle Right Sidebar (Plugins)Cmd+Shift+BCtrl+Shift+BShortcut registered but event listener may not be wired
Open PreferencesCmd+,Ctrl+,
Find in NoteCmd+FCtrl+F
Find and ReplaceCmd+Alt+FCtrl+Alt+FSee note below about Cmd+H conflict
Find NextCmd+GCtrl+GDesktop only (Tauri menu)
Find PreviousCmd+Shift+GCtrl+Shift+GConflicts with Open Graph View; Tauri menu takes precedence
Global SearchCmd+Shift+FCtrl+Shift+F
Insert WikiLinkCmd+LCtrl+L
Open Daily NoteCmd+Shift+DCtrl+Shift+DBehind enable_daily_notes feature flag
Open Graph ViewCmd+Shift+GCtrl+Shift+GBehind enable_graph feature flag
Open Kanban BoardCmd+Shift+KCtrl+Shift+KBehind enable_kanban feature flag
Show Keyboard ShortcutsF1F1Also available via Cmd+/ in Tauri menu
Refresh File TreeF5F5
ActionmacOSWindows/Linux
UndoCmd+ZCtrl+Z
RedoCmd+Shift+ZCtrl+Shift+Z
CutCmd+XCtrl+X
CopyCmd+CCtrl+C
PasteCmd+VCtrl+V
Paste and Match StyleCmd+Alt+Shift+VCtrl+Alt+Shift+V
Select AllCmd+ACtrl+A
ActionmacOSWindows/Linux
BoldCmd+BCtrl+B
ItalicCmd+ICtrl+I
UnderlineCmd+UCtrl+U
StrikethroughCmd+Shift+XCtrl+Shift+X
Inline CodeCmd+ECtrl+E
HighlightCmd+Shift+HCtrl+Shift+H
ActionmacOSWindows/LinuxNotes
Heading 1Cmd+Alt+1Ctrl+Alt+1Desktop only (Tauri menu)
Heading 2Cmd+Alt+2Ctrl+Alt+2Desktop only (Tauri menu)
Heading 3Cmd+Alt+3Ctrl+Alt+3Desktop only (Tauri menu)
Insert Inline MathCmd+MCtrl+M
Insert Math BlockCmd+Shift+MCtrl+Shift+M
Insert TableCmd+Shift+TCtrl+Shift+T
Insert Code BlockCmd+Shift+CCtrl+Shift+C
ActionmacOSWindows/Linux
Toggle Split ViewCmd+\Ctrl+\
Toggle Split DirectionCmd+Shift+\Ctrl+Shift+\
Reset Pane SizeCmd+Alt+\Ctrl+Alt+\
Toggle Sync ScrollingCmd+Alt+SCtrl+Alt+S
ActionmacOSWindows/LinuxNotes
Zoom InCmd++Ctrl++
Zoom OutCmd+-Ctrl+-
Actual Size (Reset Zoom)Cmd+0Ctrl+0
Toggle FullscreenF11F11May conflict with macOS system shortcut. Tauri menu uses Ctrl+Cmd+F / Ctrl+Ctrl+F instead.

These shortcuts require a feature flag to be enabled and are only active when the corresponding feature is turned on.

ActionmacOSWindows/LinuxFeature FlagNotes
Version HistoryCmd+HCtrl+Henable_version_historyConflicts with Find and Replace; takes precedence via capture-phase keydown listener
Toggle TerminalCmd+`Ctrl+`enable_terminalDesktop only

These shortcuts are active only when the graph view is open.

ActionShortcut
Search NodesCmd/Ctrl+K
Reset ViewCmd/Ctrl+R
2D View ModeCmd/Ctrl+1
3D View ModeCmd/Ctrl+2
Force Layout ModeCmd/Ctrl+3
Toggle LayoutSpace
Blur Search InputEscape
ActionShortcut
Save CanvasCmd/Ctrl+S
Close CanvasEscape
ActionShortcut
Close ModalEscape
Confirm ActionEnter
Show Shortcut HelpCmd/Ctrl+/
  1. Open Preferences (Cmd+, / Ctrl+,).
  2. Select the Shortcuts section.
  3. Click any shortcut to enter capture mode.
  4. Press the new key combination.
  5. The shortcut saves immediately.

Reset all shortcuts to defaults with the Reset All button.

Overrides are stored in the global config.json under the shortcuts key.

{
"shortcuts": {
"save-file": "CommandOrControl+S",
"new-file": "CommandOrControl+N"
}
}

Lokus uses the Tauri accelerator format internally:

TokenmacOSWindows/Linux
CommandOrControlCmdCtrl
ControlCtrlCtrl
ShiftShiftShift
AltOptionAlt
Plus++
Comma,,

Combine tokens with +: CommandOrControl+Shift+N.