vscode-fuzzy-search icon indicating copy to clipboard operation
vscode-fuzzy-search copied to clipboard

Jump to word with fuzzy search

Open romainmartinez opened this issue 5 years ago • 1 comments

First of all, thanks for the extension.

I use vscode-fuzzy-search through VSpaceCode Unfortunately, when I use it, the cursor is not positioned on the searched word but only at the beginning of the line containing the searched word.

Is there an option to add this feature?

romainmartinez avatar Aug 19 '20 19:08 romainmartinez

For searching we just feed all lines into the vscode quick pick input and let vscode do the filtering, so iirc we don't know what part of any given line matched outside of the line number.

This is possible but it'd require a more custom fuzzy search implementation (which should be feasible now since vscode added new and more flexible APIs) but I haven't had the time to look into it.

jacobdufault avatar Aug 21 '20 17:08 jacobdufault