zellij/zellij-server/src/panes/mod.rs
Aram Drevekenin da3f20c816
fix(compatibility): support changing index colors with osc (#646)
* fix(compatibility): support changing index colors with osc

* style(fmt): make rustfmt happy

* style(fmt): make clippy happy

* style(fmt): make rustfmt happy

* docs(changelog): document fix
2021-08-13 17:23:39 +02:00

12 lines
248 B
Rust

mod alacritty_functions;
mod grid;
mod plugin_pane;
mod selection;
mod terminal_character;
mod terminal_pane;
pub use alacritty_functions::*;
pub use grid::*;
pub(crate) use plugin_pane::*;
pub use terminal_character::*;
pub use terminal_pane::*;