We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0281e0c commit f41cd5cCopy full SHA for f41cd5c
2 files changed
CHANGELOG.md
@@ -73,7 +73,7 @@ prompt is displayed.
73
74
- Bug Fixes
75
- Updated `rich_utils.ANSI_STYLE_SEQUENCE_RE` to only match ANSI SGR (Select Graphic Rendition)
76
- sequences for text styling.
+ sequences for text styling. It previously also matched DEC Private Mode sequences.
77
78
## 3.2.1 (February 21, 2026)
79
tests/test_string_utils.py
@@ -150,7 +150,7 @@ def test_preserve_non_style_csi() -> None:
150
151
152
def test_preserve_private_modes() -> None:
153
- # Test that DEC private modes (containing '?') are not stripped
+ # Test that DEC Private Modes (containing '?') are not stripped
154
# Hide cursor (\x1b[?25l) and Show cursor (\x1b[?25h)
155
hide_cursor = "\x1b[?25l"
156
show_cursor = "\x1b[?25h"
0 commit comments