A fast fuzzy finder based quick switcher with preview.
The plugin adds a new command Lemons Search: Open search
that opens the quick switcher.
The quick switcher lets you easily search all file paths in your vault and offers a quick preview of the selected search result.
To ensure top performance and high-quality results, the plugin is written in Rust using the nucleo-matcher create running in a web worker. This ensures that the majority of the computational load is taken off the main thread for a smoother feel.
Every query consists of search atoms separated by spaces. Spaces can be escaped using \
.
In the following illustration, each underlined part is a separate search atom.
movie Star\ Wars
----- ----------
Search atoms can be modified using special characters to change their behavior.
- Substring: prefix with
'
- will require search results to contain the search atom as a continuous sequence
- e.g.
'foo
will only matchyummy food
but notfunny doodle
- use
!
to negate, e.g.!foo
- Prefix: prefix with
^
- will require search results to have the search atom as a prefix
- e.g.
^foo
will only matchfood
but notyummy food
- use
!^
to negate, e.g.!^foo
- Postfix: postfix with
$
- will require search results to have the search atom as a postfix
- e.g.
.md$
will only matchfoo.md
but notfoo.txt
- use
!<search atom>$
to negate, e.g.!.md$
- Exact: prefix with
^
and postfix with$
- will require search results to equal the search atom
- e.g.
^foo.md$
will only matchfoo.md
and nothing else - use
!^<search atom>$
to negate, e.g.!^foo.md$
While the input field is focused, you can use the following special actions.
uparrow
Move selection up by onedownarrow
Move selection down by oneenter
Open selectiontab
Copy the current selection into the search bar
- Clicking on a suggestion that is not selected will select the clicked suggestion
- Clicking on the selected suggestion will open the suggestion