Skip to main content

tmux_interface/options/pane/common/
mod.rs

1pub mod constants;
2
3#[cfg(feature = "tmux_3_0")]
4pub mod remain_on_exit;
5
6pub use constants::*;
7
8#[cfg(feature = "tmux_3_0")]
9pub use remain_on_exit::RemainOnExit;
10
11#[cfg(test)]
12#[path = "."]
13mod pane_tests {
14   #[cfg(feature = "tmux_3_0")]
15    pub mod remain_on_exit_tests;
16}