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 2323 ResizeAdjustmentDirection ,
2424)
2525from libtmux .formats import FORMAT_SEPARATOR
26+ from libtmux .hooks import HooksMixin
2627from libtmux .neo import Obj , fetch_obj
2728from libtmux .options import OptionsMixin
2829
4546
4647
4748@dataclasses .dataclass ()
48- class Pane (Obj , OptionsMixin ):
49+ class Pane (
50+ Obj ,
51+ OptionsMixin ,
52+ HooksMixin ,
53+ ):
4954 """:term:`tmux(1)` :term:`Pane` [pane_manual]_.
5055
5156 ``Pane`` instances can send commands directly to a pane, or traverse
@@ -93,6 +98,7 @@ class Pane(Obj, OptionsMixin):
9398 """
9499
95100 default_option_scope : OptionScope | None = OptionScope .Pane
101+ default_hook_scope : OptionScope | None = OptionScope .Pane
96102 server : Server
97103
98104 def __enter__ (self ) -> Self :
You can’t perform that action at this time.
0 commit comments