use crate::{RemainOnExit, Switch};
#[cfg(feature = "tmux_3_0")]
pub const ALLOW_RENAME: &str = "allow-rename";
#[cfg(feature = "tmux_3_0")]
pub const ALTERNATE_SCREEN: &str = "alternate-screen";
#[cfg(feature = "tmux_3_0")]
pub const REMAIN_ON_EXIT: &str = "remain-on-exit";
#[cfg(feature = "tmux_3_0")]
pub const WINDOW_ACTIVE_STYLE: &str = "window-active-style";
#[cfg(feature = "tmux_3_0")]
pub const WINDOW_STYLE: &str = "window-style";
#[cfg(feature = "tmux_3_2")]
pub const SYNCHRONIZE_PANES: &str = "synchronize-panes";
#[cfg(feature = "tmux_3_0")]
pub const ALLOW_RENAME_DEFAULT: Switch = Switch::Off;
#[cfg(feature = "tmux_3_0")]
pub const ALTERNATE_SCREEN_DEFAULT: Switch = Switch::On;
#[cfg(feature = "tmux_3_0")]
pub const REMAIN_ON_EXIT_DEFAULT: RemainOnExit = RemainOnExit::Off;
#[cfg(feature = "tmux_3_0")]
pub const WINDOW_ACTIVE_STYLE_DEFAULT: &str = "default";
#[cfg(feature = "tmux_3_0")]
pub const WINDOW_STYLE_DEFAULT: &str = "default";
#[cfg(feature = "tmux_3_2")]
pub const SYNCHRONIZE_PANES_DEFAULT: Switch = Switch::Off;