We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5ab50 commit a252fb0Copy full SHA for a252fb0
src/libtmux/pane.py
@@ -71,7 +71,11 @@ class Pane(Obj):
71
def refresh(self) -> None:
72
"""Refresh pane attributes from tmux."""
73
assert isinstance(self.pane_id, str)
74
- return super()._refresh(obj_key="pane_id", obj_id=self.pane_id)
+ return super()._refresh(
75
+ obj_key="pane_id",
76
+ obj_id=self.pane_id,
77
+ list_extra_args=("-a",),
78
+ )
79
80
@classmethod
81
def from_pane_id(cls, server: "Server", pane_id: str) -> "Pane":
src/libtmux/window.py
@@ -85,6 +85,7 @@ def refresh(self) -> None:
85
obj_key="window_id",
86
obj_id=self.window_id,
87
list_cmd="list-windows",
88
89
)
90
91
0 commit comments