We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db8ee16 commit 0b45edcCopy full SHA for 0b45edc
src/libtmux/session.py
@@ -114,6 +114,12 @@ def windows(self) -> QueryList["Window"]: # type:ignore
114
115
@property
116
def panes(self) -> QueryList["Pane"]: # type:ignore
117
+ """Panes belonging session.
118
+
119
+ Can be accessed via
120
+ :meth:`.panes.get() <libtmux._internal.query_list.QueryList.get()>` and
121
+ :meth:`.panes.filter() <libtmux._internal.query_list.QueryList.filter()>`
122
+ """
123
panes: t.List["Pane"] = []
124
for obj in fetch_objs(
125
list_cmd="list-panes",
0 commit comments