feat(search): add backtracking fuzzy search to plugin-search#149
Open
aidenlax666-source wants to merge 1 commit into
Open
feat(search): add backtracking fuzzy search to plugin-search#149aidenlax666-source wants to merge 1 commit into
aidenlax666-source wants to merge 1 commit into
Conversation
Implement DP-based subsequence matching with score-ranked deduplication, search panel toggle, and navigation helpers so users can find non-literal matches without leaving the existing CodeMirror search UI. Co-authored-by: Cursor <cursoragent@cursor.com>
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
@floatboat/nexus-plugin-searchwith score-ranked overlap deduplication.findFuzzyMatches/findBestFuzzySpanFromStarthelpers and mark roadmap item feat(core,react,vue,search,slash,toolbar): editor API, search, slash commands and toolbar enhancements #17 done.Why
Nexus roadmap P2 called for a fuzzy matcher with backtracking rather than literal-only search. This keeps Markdown as the source of truth while letting power users jump to subsequence matches (e.g.
fc→func) inside the existing CodeMirror search UI.Test plan
pnpm test packages/plugin-search(45 tests)pnpm test(531 tests)pnpm --filter @floatboat/nexus-plugin-search build