diff options
author | Pascal Kuthe | 2023-09-01 00:13:36 +0000 |
---|---|---|
committer | GitHub | 2023-09-01 00:13:36 +0000 |
commit | a38ec6d6ca9e5dbbd2e313f3173f2e967ed71fc1 (patch) | |
tree | c82634fcff102a8252d17a4af80de9cde203f37b /helix-term/src/ui/mod.rs | |
parent | 7cf775d5128e701722290ef29945549c96e79bd1 (diff) |
avoid excessive memory consumption in picker (#8127)
* avoid excessive memory consumption from file picker
* fix typos
Co-authored-by: Chris <75008413+cd-a@users.noreply.github.com>
---------
Co-authored-by: Chris <75008413+cd-a@users.noreply.github.com>
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r-- | helix-term/src/ui/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 3ca3d24d..b2160108 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -6,7 +6,7 @@ pub mod lsp; mod markdown; pub mod menu; pub mod overlay; -mod picker; +pub mod picker; pub mod popup; mod prompt; mod spinner; |