diff options
author | Joe Wilm <joe@jwilm.com> | 2016-12-22 13:43:06 -0500 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-12-22 13:44:13 -0500 |
commit | 6e708d2119ce0c839a89858a42a6b124a5cf48f4 (patch) | |
tree | a4ea2078153d136536587e04922f4ec841860298 /src/lib.rs | |
parent | fd11660c0a714852a3f477a6730d49b9694e1345 (diff) | |
download | alacritty-6e708d2119ce0c839a89858a42a6b124a5cf48f4.tar.gz alacritty-6e708d2119ce0c839a89858a42a6b124a5cf48f4.zip |
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.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |