1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 23:04:49 +03:00

no clipboard on windows yet

This commit is contained in:
Wez Furlong 2019-02-16 15:05:38 -08:00
parent f42463b601
commit 6d8e839b2b

View File

@ -2,7 +2,7 @@ use failure::Error;
use guiloop::{GuiSender, WindowId};
mod none;
#[cfg(target_os = "macos")]
#[cfg(any(target_os = "macos", windows))]
pub use self::none::NoClipboard as Clipboard;
#[cfg(all(unix, not(target_os = "macos")))]