libtmux Reference MCP Search
On this page

tmux.Snapshot

View as Markdown

Module
tmux
Package
github.com/libtmux/libtmux-go/tmux
Source
tmux/snapshot.go
struct tmux.Snapshot
struct [source]
struct [source]
struct tmux.Snapshot

Snapshot is an immutable, observational view of one tmux server. It is normally returned by Server.Snapshot . Its zero value has a zero Version , a zero Server , non-nil empty collection slices, and not-found point lookups. Accessors never query tmux; returned slices are newly allocated and their contained records are shallow copies.

16 declared, 0 inherited

Members

  • ClientByName method ClientByName returns the sole client view with name. It never queries tmux and returns a SnapshotLookupError matching ErrSnapshotNotFound or ErrSnapshotAmbiguous when cardinality is not one.
  • Clients method Clients returns a newly allocated shallow copy of materialized clients. It never queries tmux.
  • ClientsSeq method ClientsSeq returns an iterator over materialized client values. It never queries tmux.
  • PaneByID method PaneByID returns the sole pane view with id. Linked-session views can make an ID ambiguous, so it can return a SnapshotLookupError matching ErrSnapshotAmbiguous. It never queries tmux.
  • Panes method Panes returns a newly allocated shallow copy of pane views for every winlink. It never queries tmux.
  • PanesByID method PanesByID returns newly allocated shallow copies of every pane view with id. It never queries tmux.
  • PanesSeq method PanesSeq returns an iterator over materialized pane-view values. It never queries tmux.
  • Server method Server returns the configured handle that produced this snapshot. The zero Snapshot returns a zero Server.
  • SessionByID method SessionByID returns the sole session view with id. It never queries tmux and returns a SnapshotLookupError matching ErrSnapshotNotFound otherwise.
  • Sessions method Sessions returns a newly allocated shallow copy of materialized sessions. It never queries tmux.
  • SessionsSeq method SessionsSeq returns an iterator over materialized session values. It never queries tmux.
  • Version method Version returns the tmux version that selected this snapshot's format fields. The zero Snapshot returns a zero Version.
  • WindowByID method WindowByID returns the sole winlink view with id. Linked sessions can make an ID ambiguous, so it can return a SnapshotLookupError matching ErrSnapshotAmbiguous. It never queries tmux.
  • Windows method Windows returns a newly allocated shallow copy with one view per winlink. It never queries tmux.
  • WindowsByID method WindowsByID returns newly allocated shallow copies of every winlink view with id. It never queries tmux.
  • WindowsSeq method WindowsSeq returns an iterator over materialized winlink values. It never queries tmux.
Esc

Type to search.