mirror of
https://github.com/wez/wezterm.git
synced 2024-11-13 07:22:52 +03:00
wezterm: move search overlay to overlay dir
This commit is contained in:
parent
7c2dce479d
commit
1ec37da248
@ -13,7 +13,6 @@ mod overlay;
|
||||
mod quad;
|
||||
mod renderstate;
|
||||
mod scrollbar;
|
||||
mod search;
|
||||
mod selection;
|
||||
mod tabbar;
|
||||
mod termwindow;
|
||||
|
@ -5,9 +5,11 @@ use std::pin::Pin;
|
||||
use std::rc::Rc;
|
||||
|
||||
mod launcher;
|
||||
mod search;
|
||||
mod tabnavigator;
|
||||
|
||||
pub use launcher::launcher;
|
||||
pub use search::SearchOverlay;
|
||||
pub use tabnavigator::tab_navigator;
|
||||
|
||||
pub fn start_overlay<T, F>(
|
||||
|
@ -8,9 +8,8 @@ use crate::font::units::*;
|
||||
use crate::font::FontConfiguration;
|
||||
use crate::frontend::activity::Activity;
|
||||
use crate::frontend::front_end;
|
||||
use crate::frontend::gui::overlay::{launcher, start_overlay, tab_navigator};
|
||||
use crate::frontend::gui::overlay::{launcher, start_overlay, tab_navigator, SearchOverlay};
|
||||
use crate::frontend::gui::scrollbar::*;
|
||||
use crate::frontend::gui::search::*;
|
||||
use crate::frontend::gui::selection::*;
|
||||
use crate::frontend::gui::tabbar::{TabBarItem, TabBarState};
|
||||
use crate::keyassignment::{
|
||||
|
Loading…
Reference in New Issue
Block a user