[][src]Struct tmux_interface::windows_and_panes::SelectPane

pub struct SelectPane<'a> {
    pub down: Option<bool>,
    pub disable: Option<bool>,
    pub enable: Option<bool>,
    pub left: Option<bool>,
    pub last: Option<bool>,
    pub set_marked: Option<bool>,
    pub clear_marked: Option<bool>,
    pub right: Option<bool>,
    pub up: Option<bool>,
    pub keep_zoomed: Option<bool>,
    pub title: Option<&'a str>,
    pub target_pane: Option<&'a str>,
}

Make pane target-pane the active pane in window target-window

Manual

tmux select-pane [-DdeLlMmRUZ] [-T title] [-t target-pane]
(alias: selectp)

Fields

down: Option<bool>

[-D] - pane below

disable: Option<bool>

[-d] - disable input

enable: Option<bool>

[-e] - enable input

left: Option<bool>

[-L] - pane left

last: Option<bool>

[-l] - equivalent to last-pane command

set_marked: Option<bool>

[-M] - clear marked pane

clear_marked: Option<bool>

[-m] - set marked pane

right: Option<bool>

[-R] - pane right

up: Option<bool>

[-U] - pane above

keep_zoomed: Option<bool>

[-Z] - keep the window zoomed if it was zoomed

title: Option<&'a str>

[-T title] - title

target_pane: Option<&'a str>

[-t target-pane] - target-pane

Methods

impl<'a> SelectPane<'a>[src]

pub fn new() -> SelectPane<'a>[src]

Trait Implementations

impl<'a> Debug for SelectPane<'a>[src]

impl<'a> Default for SelectPane<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SelectPane<'a>

impl<'a> Send for SelectPane<'a>

impl<'a> Sync for SelectPane<'a>

impl<'a> Unpin for SelectPane<'a>

impl<'a> UnwindSafe for SelectPane<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.