add quick-open fuzzy file finder (Ctrl/Cmd+P)

A file picker overlay over the whole workspace, distinct from the
command palette. QuickOpenController holds the file list + a
subsequence fuzzy filter; the overlay loads the list via files.walk on
open, shows RecentFilesService entries on an empty query, and opens the
selection through a shared openWorkspaceFile helper (.md → markdown
reader bus, else editor.open) that the files panel now also routes
through, so recents stay in sync from every open site.

Bound to ctrl+p / meta+p with `when: !palette.open` so it never
collides with the palette's ctrl+p navigation; in-overlay arrows/enter/
escape reuse the palette's keymap-driven model via quickOpen.* intents.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-31 20:19:21 +02:00
co-authored by Claude Opus 4.8
parent d7be5535d5
commit 0c7a6e86d5
16 changed files with 865 additions and 22 deletions
+7
View File
@@ -28,6 +28,13 @@ void main() {
expect(parseIntentId('palette.accept'), isA<PaletteAcceptIntent>());
});
test('returns the quickOpen.* intents', () {
expect(parseIntentId('quickOpen.open'), isA<QuickOpenIntent>());
expect(parseIntentId('quickOpen.selectNext'), isA<QuickOpenSelectNextIntent>());
expect(parseIntentId('quickOpen.selectPrevious'), isA<QuickOpenSelectPreviousIntent>());
expect(parseIntentId('quickOpen.accept'), isA<QuickOpenAcceptIntent>());
});
test('returns the text.scale* intents', () {
expect(parseIntentId('text.scaleIncrease'), isA<TextScaleIncreaseIntent>());
expect(parseIntentId('text.scaleDecrease'), isA<TextScaleDecreaseIntent>());