diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-06-18 01:02:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 01:02:56 +0000 |
commit | 87e5b1aa25ea61937fa5f79668d2a46e88707c5e (patch) | |
tree | 59205d2e00072a5f8737dc104f57fc940db0c2ec /alacritty/src/main.rs | |
parent | d526649ee67237a1bedad8228f1f017035ddad3f (diff) | |
download | r-alacritty-87e5b1aa25ea61937fa5f79668d2a46e88707c5e.tar.gz r-alacritty-87e5b1aa25ea61937fa5f79668d2a46e88707c5e.tar.bz2 r-alacritty-87e5b1aa25ea61937fa5f79668d2a46e88707c5e.zip |
Add automatic scrolling during selection
This adds a new `Scheduler` which allows for staging events to be
processed at a later time.
If there is a selection active and the mouse is above or below the
window, the viewport will now scroll torwards the direction of the
mouse. The amount of lines scrolled depends on the distance of the mouse
to the boundaries used for selection scrolling.
To make it possible to scroll while in fullscreen, the selection
scrolling area includes the padding of the window and is at least 5
pixels high in case there is not enough padding present.
Diffstat (limited to 'alacritty/src/main.rs')
-rw-r--r-- | alacritty/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/main.rs b/alacritty/src/main.rs index 9587aec3..ab4acaa7 100644 --- a/alacritty/src/main.rs +++ b/alacritty/src/main.rs @@ -23,7 +23,6 @@ use log::{error, info}; #[cfg(windows)] use winapi::um::wincon::{AttachConsole, FreeConsole, ATTACH_PARENT_PROCESS}; -use alacritty_terminal::event::Event; use alacritty_terminal::event_loop::{self, EventLoop, Msg}; #[cfg(target_os = "macos")] use alacritty_terminal::locale; @@ -42,6 +41,7 @@ mod event; mod input; mod logging; mod renderer; +mod scheduler; mod url; mod window; @@ -57,7 +57,7 @@ use crate::cli::Options; use crate::config::monitor::Monitor; use crate::config::Config; use crate::display::Display; -use crate::event::{EventProxy, Processor}; +use crate::event::{Event, EventProxy, Processor}; fn main() { panic::attach_handler(); |