File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ## Unreleased
9+
10+ ### Fixed
11+
12+ - Fixed smooth scrolling broken on iTerm over SSH https://github.com/Textualize/textual/pull/5551
13+
814## [ 2.0.4] - 2025-02-17
915
1016### Fixed
Original file line number Diff line number Diff line change 4343)
4444
4545
46- IS_ITERM = os .environ .get ("TERM_PROGRAM" , "" ) == "iTerm.app"
46+ IS_ITERM = (
47+ os .environ .get ("LC_TERMINAL" , "" ) == "iTerm2"
48+ or os .environ .get ("TERM_PROGRAM" , "" ) == "iTerm.app"
49+ )
4750
4851
4952class XTermParser (Parser [Message ]):
You can’t perform that action at this time.
0 commit comments