mirror of
https://github.com/wez/wezterm.git
synced 2024-11-11 03:27:05 +03:00
move localtab into mux
This commit is contained in:
parent
5fc1227fb9
commit
9a48f7f536
@ -19,7 +19,6 @@ mod scripting;
|
||||
mod connui;
|
||||
mod frontend;
|
||||
use config::keyassignment;
|
||||
mod localtab;
|
||||
mod markdown;
|
||||
mod mux;
|
||||
mod server;
|
||||
|
@ -5,7 +5,7 @@
|
||||
//! container or actually remote, running on the other end
|
||||
//! of an ssh session somewhere.
|
||||
|
||||
use crate::localtab::LocalPane;
|
||||
use crate::mux::localtab::LocalPane;
|
||||
use crate::mux::pane::{alloc_pane_id, Pane, PaneId};
|
||||
use crate::mux::tab::{SplitDirection, Tab, TabId};
|
||||
use crate::mux::window::WindowId;
|
||||
|
@ -16,6 +16,7 @@ use std::thread;
|
||||
use thiserror::*;
|
||||
|
||||
pub mod domain;
|
||||
pub mod localtab;
|
||||
pub mod pane;
|
||||
pub mod renderable;
|
||||
pub mod tab;
|
||||
|
@ -1,6 +1,6 @@
|
||||
use crate::connui::ConnectionUI;
|
||||
use crate::localtab::LocalPane;
|
||||
use crate::mux::domain::{alloc_domain_id, Domain, DomainId, DomainState};
|
||||
use crate::mux::localtab::LocalPane;
|
||||
use crate::mux::pane::{alloc_pane_id, Pane, PaneId};
|
||||
use crate::mux::tab::{SplitDirection, Tab, TabId};
|
||||
use crate::mux::window::WindowId;
|
||||
|
Loading…
Reference in New Issue
Block a user