# tmux.FindWindowRequest

- **Module:** tmux
- **Package:** github.com/libtmux/libtmux-go/tmux
- **Language:** Go
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-go/blob/5f808882015a975a65acc7f9da5b3ff0d5cbdc91/tmux/pane_modes.go#L82
- **Page:** https://libtmux.org/reference/go/tmux-findwindowrequest/

FindWindowRequest configures the interactive window search chooser. Match is a tmux search operand, not a shell command. The zero value searches with an empty glob using tmux's default name, title, and visible-content scopes.

## Members

- `Match` (attribute) — Match is the glob pattern, or regular expression when Regex is true.
- `MatchContent` (attribute) — MatchContent restricts matching to visible window content, not history.
- `CaseInsensitive` (attribute) — CaseInsensitive makes matching ignore case.
- `MatchName` (attribute) — MatchName restricts matching to window names.
- `Regex` (attribute) — Regex interprets Match as a regular expression instead of a glob.
- `MatchTitle` (attribute) — MatchTitle restricts matching to window titles.
