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;
|
||||
|
@ -1,9 +1,9 @@
|
||||
use super::quad::*;
|
||||
use super::renderstate::*;
|
||||
use super::utilsprites::RenderMetrics;
|
||||
use crate::clipboard::SystemClipboard;
|
||||
use crate::config::Config;
|
||||
use crate::font::{FontConfiguration, FontSystemSelection};
|
||||
use crate::frontend::guicommon::clipboard::SystemClipboard;
|
||||
use crate::frontend::{front_end, gui_executor};
|
||||
use crate::keyassignment::{KeyAssignment, KeyMap, SpawnTabDomain};
|
||||
use crate::mux::renderable::Renderable;
|
||||
|
@ -14,11 +14,11 @@ use tabout::{tabulate_output, Alignment, Column};
|
||||
use std::rc::Rc;
|
||||
use std::sync::Arc;
|
||||
|
||||
mod clipboard;
|
||||
mod config;
|
||||
mod frontend;
|
||||
mod keyassignment;
|
||||
mod mux;
|
||||
|
||||
mod ratelim;
|
||||
mod server;
|
||||
mod ssh;
|
||||
|
@ -1,5 +1,5 @@
|
||||
use crate::clipboard::SystemClipboard;
|
||||
use crate::frontend::gui_executor;
|
||||
use crate::frontend::guicommon::clipboard::SystemClipboard;
|
||||
use crate::mux::domain::DomainId;
|
||||
use crate::mux::renderable::Renderable;
|
||||
use crate::mux::tab::{alloc_tab_id, Tab, TabId};
|
||||
|
Loading…
Reference in New Issue
Block a user