From 6e708d2119ce0c839a89858a42a6b124a5cf48f4 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Thu, 22 Dec 2016 13:43:06 -0500 Subject: Implement visual component of mouse selections This adds the ability to click and drag with the mouse and have the effect of visually selecting text. The ability to copy the selection into a clipboard buffer is not yet implemented. --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index d9e1d063..e060da04 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,6 +15,7 @@ //! Alacritty - The GPU Enhanced Terminal #![feature(range_contains)] #![feature(inclusive_range_syntax)] +#![feature(inclusive_range)] #![feature(drop_types_in_const)] #![feature(step_trait)] #![feature(plugin)] @@ -62,6 +63,7 @@ pub mod index; pub mod input; pub mod meter; pub mod renderer; +pub mod selection; pub mod sync; pub mod term; pub mod tty; -- cgit