libtmux_mcp.models.SearchPanesResult
Python
- Python
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go Unavailable
- Java Unavailable
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Bases:
- BaseModel
Paginated result of
search_panes.Wrapping the match list lets us surface bounded-output information that a bare
listofPaneContentMatchrows cannot: whether pagination truncated the result set, which panes were skipped, and theoffset/limitthat produced this page. Agents can re-request with a higheroffsetto retrieve subsequent pages.
Members
- matches : list[PaneContentMatch] = Field( default_factory=list, description="PaneContentMatch entries for this page.", )
- truncated : bool = Field( default=False, description=( "True when the result set was truncated by ``limit`` or " "by ``max_matched_lines_per_pane`` on any pane." ), )
- total_panes_matched : int = Field( description=( "Total number of panes that matched the pattern before " "``offset`` / ``limit`` were applied." ), )