1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
use super::tmux_interface::*; /// Options impl<'a> TmuxInterface<'a> { /// ```text /// set-option [-aFgoqsuw] [-t target-session | target-window] option value /// (alias: set) /// ``` pub fn set_option() { unimplemented!(); } /// ```text /// set-window-option [-aFgoqu] [-t target-window] option value /// (alias: setw) /// ``` pub fn set_window_option() { unimplemented!(); } /// ```text /// show-options [-gHqsvw] [-t target-session | target-window] [option] /// (alias: show) /// ``` pub fn show_options() { } /// ```text /// show-window-options [-gv] [-t target-window] [option] /// (alias: showw) /// ``` pub fn show_window_options() { unimplemented!(); } }