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 1616from libtmux .constants import (
1717 PANE_DIRECTION_FLAG_MAP ,
1818 RESIZE_ADJUSTMENT_DIRECTION_FLAG_MAP ,
19+ OptionScope ,
1920 PaneDirection ,
2021 ResizeAdjustmentDirection ,
2122)
2223from libtmux .formats import FORMAT_SEPARATOR
2324from libtmux .neo import Obj , fetch_obj
25+ from libtmux .options import OptionsMixin
2426
2527from . import exc
2628
3436
3537
3638@dataclasses .dataclass ()
37- class Pane (Obj ):
39+ class Pane (Obj , OptionsMixin ):
3840 """:term:`tmux(1)` :term:`Pane` [pane_manual]_.
3941
4042 ``Pane`` instances can send commands directly to a pane, or traverse
@@ -74,6 +76,7 @@ class Pane(Obj):
7476 Accessed April 1st, 2018.
7577 """
7678
79+ default_option_scope : t .Optional [OptionScope ] = OptionScope .Pane
7780 server : "Server"
7881
7982 def refresh (self ) -> None :
You can’t perform that action at this time.
0 commit comments