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 21
21
ResizeAdjustmentDirection ,
22
22
)
23
23
from libtmux .formats import FORMAT_SEPARATOR
24
+ from libtmux .hooks import HooksMixin
24
25
from libtmux .neo import Obj , fetch_obj
25
26
from libtmux .options import OptionsMixin
26
27
36
37
37
38
38
39
@dataclasses .dataclass ()
39
- class Pane (Obj , OptionsMixin ):
40
+ class Pane (
41
+ Obj ,
42
+ OptionsMixin ,
43
+ HooksMixin ,
44
+ ):
40
45
""":term:`tmux(1)` :term:`Pane` [pane_manual]_.
41
46
42
47
``Pane`` instances can send commands directly to a pane, or traverse
@@ -77,6 +82,7 @@ class Pane(Obj, OptionsMixin):
77
82
"""
78
83
79
84
default_option_scope : t .Optional [OptionScope ] = OptionScope .Pane
85
+ default_hook_scope : t .Optional [OptionScope ] = OptionScope .Pane
80
86
server : "Server"
81
87
82
88
def refresh (self ) -> None :
You can’t perform that action at this time.
0 commit comments