helix/helix-view
Michael Davis c02663860d
Detect and subscribe to theme mode updates
Historically we haven't wanted to add light/dark mode since it required
platform-specific dependencies. The Contour terminal [proposed] a VT
extension to query for the current mode and subscribe to future changes,
however, which can be supported squarely in Crossterm with no new deps.
Currently at least Contour, Kitty and Ghostty support this on the
terminal emulator side and Neovim on the client side.

This patch allows configuring multiple themes:

    # this is still accepted:
    # theme = "ayu_dark"
    theme = { dark = "ayu_dark", light = "ayu_light" }

On startup we query the terminal for the current mode and choose that
theme. We then receive events from crossterm whenever the terminal
changes theme.

[proposed]: https://github.com/contour-terminal/contour/blob/master/docs/vt-extensions/color-palette-update-notifications.md
2025-03-28 22:18:07 -04:00
..
src Detect and subscribe to theme mode updates 2025-03-28 22:18:07 -04:00
tests/encoding Re-vendor encoding_rs test data 2024-11-13 15:30:17 +09:00
Cargo.toml Use 'helix-crossterm' soft fork 2025-03-28 20:31:28 -04:00