diff --git a/helix-term/src/ui/explore.rs b/helix-term/src/ui/explorer.rs similarity index 99% rename from helix-term/src/ui/explore.rs rename to helix-term/src/ui/explorer.rs index 2457cdd7..fae77db6 100644 --- a/helix-term/src/ui/explore.rs +++ b/helix-term/src/ui/explorer.rs @@ -831,3 +831,6 @@ fn render_block(area: Rect, surface: &mut Surface, borders: Borders) -> Rect { block.render(area, surface); inner } + +#[cfg(test)] +mod test_explore {} diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index 0dba41e1..12701f64 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -1,7 +1,7 @@ mod completion; mod document; pub(crate) mod editor; -mod explore; +mod explorer; mod fuzzy_match; mod info; pub mod lsp; @@ -21,7 +21,7 @@ use crate::filter_picker_entry; use crate::job::{self, Callback}; pub use completion::Completion; pub use editor::EditorView; -pub use explore::Explorer; +pub use explorer::Explorer; pub use markdown::Markdown; pub use menu::Menu; pub use picker::{DynamicPicker, FileLocation, FilePicker, Picker};