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 17
17
from libtmux .constants import (
18
18
PANE_DIRECTION_FLAG_MAP ,
19
19
RESIZE_ADJUSTMENT_DIRECTION_FLAG_MAP ,
20
+ OptionScope ,
20
21
PaneDirection ,
21
22
ResizeAdjustmentDirection ,
22
23
)
23
24
from libtmux .formats import FORMAT_SEPARATOR
24
25
from libtmux .neo import Obj , fetch_obj
26
+ from libtmux .options import OptionsMixin
25
27
26
28
from . import exc
27
29
42
44
43
45
44
46
@dataclasses .dataclass ()
45
- class Pane (Obj ):
47
+ class Pane (Obj , OptionsMixin ):
46
48
""":term:`tmux(1)` :term:`Pane` [pane_manual]_.
47
49
48
50
``Pane`` instances can send commands directly to a pane, or traverse
@@ -89,6 +91,7 @@ class Pane(Obj):
89
91
Accessed April 1st, 2018.
90
92
"""
91
93
94
+ default_option_scope : OptionScope | None = OptionScope .Pane
92
95
server : Server
93
96
94
97
def __enter__ (self ) -> Self :
You can’t perform that action at this time.
0 commit comments