# tmuxp.cli.search.CLISearchNamespace

- **Module:** tmuxp.cli.search
- **Package:** tmuxp
- **Language:** Python
- **Kind:** class
- **Source:** https://github.com/tmux-python/tmuxp/blob/153acdf6ff1268b14d3d03ed488f545a7123c8f1/src/tmuxp/cli/search.py#L1083
- **Page:** https://libtmux.org/en/py/latest/workspace/reference/tmuxp-cli-search-clisearchnamespace/

Typed :class:`argparse.Namespace` for tmuxp search command.

## Example

```python
>>> ns = CLISearchNamespace()
>>> ns.query_terms = ["dev"]
>>> ns.query_terms
['dev']
```

## Members

- `color` (attribute)
- `query_terms` (attribute)
- `field` (attribute)
- `ignore_case` (attribute)
- `smart_case` (attribute)
- `fixed_strings` (attribute)
- `word_regexp` (attribute)
- `invert_match` (attribute)
- `match_any` (attribute)
- `output_json` (attribute)
- `output_ndjson` (attribute)
- `print_help` (attribute)
