diff options
author | Pascal Kuthe | 2022-09-25 21:43:24 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-10-11 03:25:28 +0000 |
commit | 7af599e0af964d1ea9d3e454782ac5d977f1621f (patch) | |
tree | 4aea547e7f7cd6f1beba0927101071a396ca9c57 /helix-term/src/ui/mod.rs | |
parent | c388e16e09b36c665c4f92db4f7a071e7c1d9761 (diff) |
Treat space as a seperator instead of a character in fuzzy picker
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r-- | helix-term/src/ui/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 8ab15bff..6ac4dbb7 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -1,5 +1,6 @@ mod completion; pub(crate) mod editor; +mod fuzzy_match; mod info; pub mod lsp; mod markdown; |