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 2121 ResizeAdjustmentDirection ,
2222)
2323from libtmux .formats import FORMAT_SEPARATOR
24+ from libtmux .hooks import HooksMixin
2425from libtmux .neo import Obj , fetch_obj
2526from libtmux .options import OptionsMixin
2627
3637
3738
3839@dataclasses .dataclass ()
39- class Pane (Obj , OptionsMixin ):
40+ class Pane (
41+ Obj ,
42+ OptionsMixin ,
43+ HooksMixin ,
44+ ):
4045 """:term:`tmux(1)` :term:`Pane` [pane_manual]_.
4146
4247 ``Pane`` instances can send commands directly to a pane, or traverse
@@ -77,6 +82,7 @@ class Pane(Obj, OptionsMixin):
7782 """
7883
7984 default_option_scope : t .Optional [OptionScope ] = OptionScope .Pane
85+ default_hook_scope : t .Optional [OptionScope ] = OptionScope .Pane
8086 server : "Server"
8187
8288 def refresh (self ) -> None :
You can’t perform that action at this time.
0 commit comments