1
0
mirror of https://github.com/helix-editor/helix synced 2026-03-27 03:21:57 +01:00
helix/helix-tui
Michael Davis 253e6195c8
Restore original terminal background color (#15527)
We were previously emitting OSC111 to reset the terminal background
color when restoring. This breaks setups where you customize the
terminal background with OSC11 outside of Helix. We can use OSC111 when
there is no detected background color or when restoring during a panic,
but otherwise we should first query with `OSC 11 ; ? ST` and set that
color when restoring.
2026-03-26 13:10:06 -04:00
..
src Restore original terminal background color (#15527) 2026-03-26 13:10:06 -04:00
tests fix: Make Table Cells set the style of their text (#13776) 2025-09-15 09:01:21 -05:00
.gitignore Inline tui as helix-tui fork. 2021-05-09 17:52:55 +09:00
Cargo.toml tui: Use Crossterm on Windows (#14454) 2025-09-21 09:35:08 -05:00
README.md Fix grammatical error (#1427) 2022-01-04 10:45:31 +09:00

helix-tui

This library is a fork of the great library tui-rs. We've mainly relied on the double buffer implementation and render diffing, side-stepping its widget and layouting.