···3636#[cfg(test)]
3737pub(crate) use read_stdin_limited as read_stdin_with_limit;
3838#[cfg(test)]
3939+pub(crate) use render::wrap_path_lines;
4040+#[cfg(test)]
3941pub(crate) use runtime::should_handle_key;
4042#[cfg(test)]
4143pub(crate) use theme::{parse_theme_preset, theme_preset_label, ThemePreset, THEME_PRESETS};
+4
src/render/mod.rs
···99 Frame,
1010};
11111212+#[cfg(test)]
1313+pub(crate) use modal::wrap_path_lines;
1214pub(crate) use status::build_status_bar;
1315pub(crate) use toc::{build_toc_line_with_index, toc_header_line};
1416···5153 modal::render_theme_picker(f, app);
5254 } else if app.is_editor_picker_open() {
5355 modal::render_editor_picker(f, app);
5656+ } else if app.is_path_popup_open() {
5757+ modal::render_path_popup(f, app);
5458 }
5559}
5660