PuTTY wish compressed-scrollbackThis is a mirror. The primary PuTTY web site can be found here.
Home |
Licence |
FAQ |
Docs |
Download |
Keys |
Links class: wish: This is a request for an enhancement. difficulty: tricky: Needs many tuits. blocks: 256-colours unicode-combining unicode-more-planes priority: medium: This should be fixed one day. fixed-in: 2004-10-14 (0.58) (0.59) (0.60) PuTTY's current terminal emulator stores 32 bits per character in both the active terminal screen and the scrollback, and practically all of those bits are full. If we want to add more state (such as more colours or Unicode combining characters), we need to expand the data structure. But expanding the data structure throughout the terminal code will seriously increase the size of the (potentially very large amount of) scrollback stored in memory, so we don't like that approach.
What we want to do instead is to separate scrollback from the active
terminal screen by inventing a compressed format. So the
active terminal screen will use a small That way, the chances are that the average user will experience a drop in memory footprint (since all their scrollback will end up smaller than it is right now), and yet the terminal emulator will acquire extra flexibility to have features added to it without impacting memory usage for people who don't use them. SGT, 2004-10-13: I've now done the initial work for this. Audit trail for this wish. If you want to comment on this web site, see the Feedback page. (last revision of this bug record was at 2004-11-16 15:27:00 +0000) |