feat: add desktop quick open workflow (#925)

Introduce a dedicated Quick Open dialog, wire it to Cmd+P and the macOS app menu, and show file-type icons in quick-open results so file navigation matches the rest of the app.
This commit is contained in:
Jinwoo An (안진우)
2026-04-16 23:24:58 +03:00
committed by GitHub
parent 5bc52a15ad
commit 2fbfd803f7
9 changed files with 325 additions and 1 deletions
+7
View File
@@ -104,6 +104,13 @@ export function keyToShortcutToken(key: string): string {
}
const SHORTCUT_ACTIONS: ReadonlyArray<ShortcutAction> = [
{
id: 'open_quick_open',
defaultCombo: 'mod+p',
label: 'Open quick open',
description: 'Open the quick open dialog',
customizable: true,
},
{
id: 'open_command_palette',
defaultCombo: 'mod+k',