* 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
12 lines
248 B
Rust
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::*;
|