From fd5c1ecaeb6a2f5f5f18118cddbc697309717436 Mon Sep 17 00:00:00 2001 From: NopAngel Date: Tue, 30 Dec 2025 22:12:27 -0400 Subject: [PATCH 1/2] fix: src/terminal.rs: code fix --- src/terminal.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/terminal.rs b/src/terminal.rs index 28808e3e30..d4ca4d2f32 100644 --- a/src/terminal.rs +++ b/src/terminal.rs @@ -1,5 +1,6 @@ -use nu_ansi_term::Color::{self, Fixed, Rgb}; -use nu_ansi_term::{self, Style}; +use nu_ansi_term::Color; +use nu_ansi_term::Color::{Fixed, Rgb}; +use nu_ansi_term::Style; use syntect::highlighting::{self, FontStyle}; From 5cd1de9b18589fb03b3dda3b407213384502b57c Mon Sep 17 00:00:00 2001 From: NopAngel Date: Tue, 30 Dec 2025 22:20:06 -0400 Subject: [PATCH 2/2] CHANGELOG --- CHANGELOG.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96d9edbcbf..088eab0d35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -145,14 +145,7 @@ ## Bugfixes -- Fix long file name wrapping in header, see #2835 (@FilipRazek) -- Fix `NO_COLOR` support, see #2767 (@acuteenvy) -- Fix handling of inputs with OSC ANSI escape sequences, see #2541 and #2544 (@eth-p) -- Fix handling of inputs with combined ANSI color and attribute sequences, see #2185 and #2856 (@eth-p) -- Fix panel width when line 10000 wraps, see #2854 (@eth-p) -- Fix compile issue of `time` dependency caused by standard library regression #3045 (@cyqsimon) -- Fix override behavior of --plain and --paging, see issue #2731 and PR #3108 (@einfachIrgendwer0815) -- Fix bugs in `$LESSOPEN` support, see #2805 (@Anomalocaridid) + - Fix invalid import in ANSI color conversion module (#3538) @NopAngel ## Other