Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/helpers.rs')
| -rw-r--r-- | helix-term/tests/test/helpers.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/helix-term/tests/test/helpers.rs b/helix-term/tests/test/helpers.rs index 60143aaa..567422c3 100644 --- a/helix-term/tests/test/helpers.rs +++ b/helix-term/tests/test/helpers.rs @@ -10,9 +10,13 @@ use helix_core::{diagnostic::Severity, test, Selection, Transaction}; use helix_term::{application::Application, args::Args, config::Config, keymap::merge_keys}; use helix_view::{current_ref, doc, editor::LspConfig, input::parse_macro, Editor}; use tempfile::NamedTempFile; -use termina::event::{Event, KeyEvent}; use tokio_stream::wrappers::UnboundedReceiverStream; +#[cfg(windows)] +use crossterm::event::{Event, KeyEvent}; +#[cfg(not(windows))] +use termina::event::{Event, KeyEvent}; + /// Specify how to set up the input text with line feeds #[derive(Clone, Debug)] pub enum LineFeedHandling { |