File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 22
22
ResizeAdjustmentDirection ,
23
23
)
24
24
from libtmux .formats import FORMAT_SEPARATOR
25
+ from libtmux .hooks import HooksMixin
25
26
from libtmux .neo import Obj , fetch_obj
26
27
from libtmux .options import OptionsMixin
27
28
44
45
45
46
46
47
@dataclasses .dataclass ()
47
- class Pane (Obj , OptionsMixin ):
48
+ class Pane (
49
+ Obj ,
50
+ OptionsMixin ,
51
+ HooksMixin ,
52
+ ):
48
53
""":term:`tmux(1)` :term:`Pane` [pane_manual]_.
49
54
50
55
``Pane`` instances can send commands directly to a pane, or traverse
@@ -92,6 +97,7 @@ class Pane(Obj, OptionsMixin):
92
97
"""
93
98
94
99
default_option_scope : OptionScope | None = OptionScope .Pane
100
+ default_hook_scope : OptionScope | None = OptionScope .Pane
95
101
server : Server
96
102
97
103
def __enter__ (self ) -> Self :
You can’t perform that action at this time.
0 commit comments