diff options
author | Aleksey Kuznetsov <zummenix@gmail.com> | 2019-10-16 00:13:58 +0500 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2019-10-15 21:13:58 +0200 |
commit | 49380bffd24203f139dc32c7bdc9958e64d9dd4d (patch) | |
tree | 0d4bfb3cb7f66868983a6ed5a22695749502995f /alacritty/src/logging.rs | |
parent | 124e98e94e66d5790d4523adb9cd75f85a4691f4 (diff) | |
download | r-alacritty-49380bffd24203f139dc32c7bdc9958e64d9dd4d.tar.gz r-alacritty-49380bffd24203f139dc32c7bdc9958e64d9dd4d.tar.bz2 r-alacritty-49380bffd24203f139dc32c7bdc9958e64d9dd4d.zip |
Add support for alternate scroll escape
Fixes #2727.
Diffstat (limited to 'alacritty/src/logging.rs')
-rw-r--r-- | alacritty/src/logging.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alacritty/src/logging.rs b/alacritty/src/logging.rs index ea44637b..9d837a78 100644 --- a/alacritty/src/logging.rs +++ b/alacritty/src/logging.rs @@ -172,7 +172,8 @@ impl OnDemandLogFile { Ok(file) => { self.file = Some(io::LineWriter::new(file)); self.created.store(true, Ordering::Relaxed); - let _ = writeln!(io::stdout(), "Created log file at \"{}\"", self.path.display()); + let _ = + writeln!(io::stdout(), "Created log file at \"{}\"", self.path.display()); }, Err(e) => { let _ = writeln!(io::stdout(), "Unable to create log file: {}", e); |