# tmux.FindWindowRequest

- **Module:** tmux
- **Package:** github.com/libtmux/libtmux-go/tmux
- **Language:** Go
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-go/blob/52968a3181c1c9e6d1b26c565d4b170968ae61c0/tmux/pane_modes.go#L82
- **Page:** https://libtmux.org/en/go/latest/reference/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.
