Prerelease This site documents an alpha of libtmux. Its structure, URLs and APIs are subject to change.

libtmux_mcp.models.SearchPanesResult

Python
  • Python
  • Ruby Unavailable
  • Lua Unavailable
  • TypeScript Unavailable
  • Rust Unavailable
  • Go Unavailable
  • Java Unavailable
  • .NET Unavailable
  • C++ Unavailable
  • Swift Unavailable

API reference · Markdown

class libtmux_mcp.models.SearchPanesResult
class [source]
class [source]
class libtmux_mcp.models.SearchPanesResult
Bases:
  • BaseModel

Paginated result of search_panes .

Wrapping the match list lets us surface bounded-output information that a bare list of PaneContentMatch rows cannot: whether pagination truncated the result set, which panes were skipped, and the offset/limit that produced this page. Agents can re-request with a higher offset to retrieve subsequent pages.

Members

matches

matches : list[PaneContentMatch] = Field( default_factory=list, description="PaneContentMatch entries for this page.", )
attribute [source]
attribute [source]
matches

truncated

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." ), )
attribute [source]
attribute [source]
truncated

truncated_panes

truncated_panes : list[str] = Field( default_factory=list, description=( "Pane IDs that matched but were skipped because the global " "``limit`` was already satisfied. Re-request with a larger " "``offset`` to retrieve them." ), )
attribute [source]
attribute [source]
truncated_panes

total_panes_matched

total_panes_matched : int = Field( description=( "Total number of panes that matched the pattern before " "``offset`` / ``limit`` were applied." ), )
attribute [source]
attribute [source]
total_panes_matched

offset

offset : int = Field(description="The ``offset`` that produced this page.")
attribute [source]
attribute [source]
offset

limit

limit : int | None = Field(description="The ``limit`` that produced this page.")
attribute [source]
attribute [source]
limit
Esc

Type to search.