fuzzy-match + recency-rank the command palette

Completes the command-palette acceptance: the filter is now a
subsequence fuzzy match (was substring), and recently-invoked commands
float to the top and break score ties. The subsequence matcher is
extracted to a shared fuzzy helper so the palette and quick-open file
finder use one implementation instead of a private copy each.

Pinned commands and cross-session recency persistence are left as a
follow-up (they need a pin affordance + settings storage).

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-06-06 09:40:56 +02:00
co-authored by Claude
parent 968c3dbfa8
commit 0e85f7f5e7
8 changed files with 225 additions and 29 deletions
@@ -57,5 +57,33 @@ void main() {
expect(palette.isOpen, false);
expect(palette.filter, '');
});
test('fuzzy subsequence match — non-contiguous chars (not substring)', () {
// "gc" / "gp" aren't substrings of the titles, but are subsequences.
palette.setFilter('gc');
expect(palette.filtered().map((c) => c.command), contains('git.commit'));
palette.setFilter('gp');
expect(palette.filtered().map((c) => c.command), contains('git.push'));
// Garbage that isn't a subsequence matches nothing.
palette.setFilter('zzz');
expect(palette.filtered(), isEmpty);
});
test('recency floats invoked commands to the top on an empty filter', () async {
expect(palette.filtered().first.command, 'git.commit'); // registry order
await palette.invoke('theme.pick');
expect(palette.filtered().first.command, 'theme.pick');
await palette.invoke('git.push');
expect(palette.filtered().map((c) => c.command).take(2).toList(), ['git.push', 'theme.pick']);
});
test('recency breaks fuzzy-score ties', () async {
// "git" matches both git.* titles with an equal score; invoking push
// floats it above commit among the equal matches.
await palette.invoke('git.push');
palette.setFilter('git');
final order = palette.filtered().map((c) => c.command).toList();
expect(order.indexOf('git.push'), lessThan(order.indexOf('git.commit')));
});
});
}