Struct tmux_interface::commands::windows_and_panes::find_window::FindWindow[][src]

pub struct FindWindow<'a>(pub TmuxCommand<'a>);

Search for the fnmatch(3) pattern match-string in window names, titles, and visible content (but not history)

Manual

tmux ^3.0:

tmux find-window [-rCNTZ] [-t target-pane] match-string
(alias: findw)

tmux ^2.6:
```text
tmux find-window [-CNT] [-t target-pane] match-string
(alias: findw)

tmux ^1.7:
```text
tmux find-window [-CNT] [-F format] [-t target-pane] match-string
(alias: findw)

tmux ^0.8:
```text
tmux find-window [-t target-pane] match-string
(alias: findw)

Implementations

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

pub fn new() -> Self[src]

pub fn only_visible(&mut self) -> &mut Self[src]

[-C] - match only visible window contents

pub fn only_name(&mut self) -> &mut Self[src]

[-N] - match only the window name

pub fn only_title(&mut self) -> &mut Self[src]

[-T] - match only the window title

pub fn target_pane<S: Into<Cow<'a, str>>>(
    &mut self,
    target_pane: S
) -> &mut Self
[src]

[-t target-pane] - target-pane

pub fn output(&self) -> Result<TmuxOutput, Error>[src]

Trait Implementations

impl<'a> Clone for FindWindow<'a>[src]

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

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

impl<'a> From<&'_ TmuxCommand<'a>> for FindWindow<'a>[src]

impl<'a> From<TmuxCommand<'a>> for FindWindow<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for FindWindow<'a>

impl<'a> Send for FindWindow<'a>

impl<'a> Sync for FindWindow<'a>

impl<'a> Unpin for FindWindow<'a>

impl<'a> UnwindSafe for FindWindow<'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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.