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 16
16
from libtmux .constants import (
17
17
PANE_DIRECTION_FLAG_MAP ,
18
18
RESIZE_ADJUSTMENT_DIRECTION_FLAG_MAP ,
19
+ OptionScope ,
19
20
PaneDirection ,
20
21
ResizeAdjustmentDirection ,
21
22
)
22
23
from libtmux .formats import FORMAT_SEPARATOR
23
24
from libtmux .neo import Obj , fetch_obj
25
+ from libtmux .options import OptionsMixin
24
26
25
27
from . import exc
26
28
34
36
35
37
36
38
@dataclasses .dataclass ()
37
- class Pane (Obj ):
39
+ class Pane (Obj , OptionsMixin ):
38
40
""":term:`tmux(1)` :term:`Pane` [pane_manual]_.
39
41
40
42
``Pane`` instances can send commands directly to a pane, or traverse
@@ -74,6 +76,7 @@ class Pane(Obj):
74
76
Accessed April 1st, 2018.
75
77
"""
76
78
79
+ default_option_scope : t .Optional [OptionScope ] = OptionScope .Pane
77
80
server : "Server"
78
81
79
82
def refresh (self ) -> None :
You can’t perform that action at this time.
0 commit comments