diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-03-12 12:15:00 +0100 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-08-14 15:41:13 -0600 |
commit | 84a9d7446eba3e912ad3b7efd0000ff8ea5845a7 (patch) | |
tree | c64747f68509f395fa8d2ef39ce24f40ab273891 /alacritty/src/logging.rs | |
parent | 082a348e7df9b35f4d574256f7a2856676421288 (diff) | |
download | r-alacritty-84a9d7446eba3e912ad3b7efd0000ff8ea5845a7.tar.gz r-alacritty-84a9d7446eba3e912ad3b7efd0000ff8ea5845a7.tar.bz2 r-alacritty-84a9d7446eba3e912ad3b7efd0000ff8ea5845a7.zip |
Fix hint `Select` action for hyperlink escape
This fixes an issue where the `Select` action for hyperlink escape text
would select the entire line, instead of selecting only the hyperlink
itself.
It also changes the way hyperlinks with the same ID are highlighted,
removing the restriction of being on consecutive lines and instead
highlighting all visible cells that correspond to the matching
hyperlink.
Closes #7766.
Diffstat (limited to 'alacritty/src/logging.rs')
-rw-r--r-- | alacritty/src/logging.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/logging.rs b/alacritty/src/logging.rs index 42f1536e..a3833a5b 100644 --- a/alacritty/src/logging.rs +++ b/alacritty/src/logging.rs @@ -12,7 +12,7 @@ use std::sync::{Arc, Mutex, OnceLock}; use std::time::Instant; use std::{env, process}; -use log::{self, Level, LevelFilter}; +use log::{Level, LevelFilter}; use winit::event_loop::EventLoopProxy; use crate::cli::Options; |