pub type MoveP<'a> = MovePane<'a>;

Aliased Type§

struct MoveP<'a> {
    pub left_above: bool,
    pub detached: bool,
    pub horizontal: bool,
    pub vertical: bool,
    pub size: Option<&'a PaneSize>,
    pub src_pane: Option<Cow<'a, str>>,
    pub dst_pane: Option<Cow<'a, str>>,
}

Fields§

§left_above: bool

[-b] - cause src-pane to be joined to left of or above dst-pane

§detached: bool

[-d] -

§horizontal: bool

[-h] - full height

§vertical: bool

[-v] - full width

§size: Option<&'a PaneSize>

[-l size] - specify the size of the new pane in lines/columns

§src_pane: Option<Cow<'a, str>>

[-s src-pane] - src-pane

§dst_pane: Option<Cow<'a, str>>

[-t dst-pane] - dst-pane