File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1818from libtmux .constants import (
1919 PANE_DIRECTION_FLAG_MAP ,
2020 RESIZE_ADJUSTMENT_DIRECTION_FLAG_MAP ,
21+ OptionScope ,
2122 PaneDirection ,
2223 ResizeAdjustmentDirection ,
2324)
2425from libtmux .formats import FORMAT_SEPARATOR
2526from libtmux .neo import Obj , fetch_obj
27+ from libtmux .options import OptionsMixin
2628
2729if t .TYPE_CHECKING :
2830 import sys
4345
4446
4547@dataclasses .dataclass ()
46- class Pane (Obj ):
48+ class Pane (Obj , OptionsMixin ):
4749 """:term:`tmux(1)` :term:`Pane` [pane_manual]_.
4850
4951 ``Pane`` instances can send commands directly to a pane, or traverse
@@ -90,6 +92,7 @@ class Pane(Obj):
9092 Accessed April 1st, 2018.
9193 """
9294
95+ default_option_scope : OptionScope | None = OptionScope .Pane
9396 server : Server
9497
9598 def __enter__ (self ) -> Self :
You can’t perform that action at this time.
0 commit comments