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 1717from libtmux .constants import (
1818 PANE_DIRECTION_FLAG_MAP ,
1919 RESIZE_ADJUSTMENT_DIRECTION_FLAG_MAP ,
20+ OptionScope ,
2021 PaneDirection ,
2122 ResizeAdjustmentDirection ,
2223)
2324from libtmux .formats import FORMAT_SEPARATOR
2425from libtmux .neo import Obj , fetch_obj
26+ from libtmux .options import OptionsMixin
2527
2628from . import exc
2729
3537
3638
3739@dataclasses .dataclass ()
38- class Pane (Obj ):
40+ class Pane (Obj , OptionsMixin ):
3941 """:term:`tmux(1)` :term:`Pane` [pane_manual]_.
4042
4143 ``Pane`` instances can send commands directly to a pane, or traverse
@@ -75,6 +77,7 @@ class Pane(Obj):
7577 Accessed April 1st, 2018.
7678 """
7779
80+ default_option_scope : OptionScope | None = OptionScope .Pane
7881 server : Server
7982
8083 def refresh (self ) -> None :
You can’t perform that action at this time.
0 commit comments