mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 06:54:45 +03:00
move clipboard out from old guicommon module
This commit is contained in:
parent
4cb74e68dd
commit
8bfd92bbfc
@ -1,2 +1 @@
|
|||||||
pub mod clipboard;
|
|
||||||
pub mod localtab;
|
pub mod localtab;
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
use super::quad::*;
|
use super::quad::*;
|
||||||
use super::renderstate::*;
|
use super::renderstate::*;
|
||||||
use super::utilsprites::RenderMetrics;
|
use super::utilsprites::RenderMetrics;
|
||||||
|
use crate::clipboard::SystemClipboard;
|
||||||
use crate::config::Config;
|
use crate::config::Config;
|
||||||
use crate::font::{FontConfiguration, FontSystemSelection};
|
use crate::font::{FontConfiguration, FontSystemSelection};
|
||||||
use crate::frontend::guicommon::clipboard::SystemClipboard;
|
|
||||||
use crate::frontend::{front_end, gui_executor};
|
use crate::frontend::{front_end, gui_executor};
|
||||||
use crate::keyassignment::{KeyAssignment, KeyMap, SpawnTabDomain};
|
use crate::keyassignment::{KeyAssignment, KeyMap, SpawnTabDomain};
|
||||||
use crate::mux::renderable::Renderable;
|
use crate::mux::renderable::Renderable;
|
||||||
|
@ -14,11 +14,11 @@ use tabout::{tabulate_output, Alignment, Column};
|
|||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
mod clipboard;
|
||||||
mod config;
|
mod config;
|
||||||
mod frontend;
|
mod frontend;
|
||||||
mod keyassignment;
|
mod keyassignment;
|
||||||
mod mux;
|
mod mux;
|
||||||
|
|
||||||
mod ratelim;
|
mod ratelim;
|
||||||
mod server;
|
mod server;
|
||||||
mod ssh;
|
mod ssh;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
use crate::clipboard::SystemClipboard;
|
||||||
use crate::frontend::gui_executor;
|
use crate::frontend::gui_executor;
|
||||||
use crate::frontend::guicommon::clipboard::SystemClipboard;
|
|
||||||
use crate::mux::domain::DomainId;
|
use crate::mux::domain::DomainId;
|
||||||
use crate::mux::renderable::Renderable;
|
use crate::mux::renderable::Renderable;
|
||||||
use crate::mux::tab::{alloc_tab_id, Tab, TabId};
|
use crate::mux::tab::{alloc_tab_id, Tab, TabId};
|
||||||
|
Loading…
Reference in New Issue
Block a user