macro_rules! find_window {
    (@cmd ($cmd:expr) -r, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -C, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -N, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -T, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -Z, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_pane:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

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

§Manual

tmux ^3.0:

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

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

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

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