File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1616from libtmux ._internal .query_list import QueryList
1717from libtmux .common import tmux_cmd
1818from libtmux .constants import OptionScope
19+ from libtmux .hooks import HooksMixin
1920from libtmux .neo import fetch_objs
2021from libtmux .pane import Pane
2122from libtmux .session import Session
4041logger = logging .getLogger (__name__ )
4142
4243
43- class Server (EnvironmentMixin , OptionsMixin ):
44+ class Server (
45+ EnvironmentMixin ,
46+ OptionsMixin ,
47+ HooksMixin ,
48+ ):
4449 """:term:`tmux(1)` :term:`Server` [server_manual]_.
4550
4651 - :attr:`Server.sessions` [:class:`Session`, ...]
@@ -106,6 +111,8 @@ class Server(EnvironmentMixin, OptionsMixin):
106111
107112 default_option_scope : t .Optional [OptionScope ] = OptionScope .Server
108113 """For option management."""
114+ default_hook_scope : t .Optional [OptionScope ] = OptionScope .Server
115+ """For hook management."""
109116
110117 def __init__ (
111118 self ,
You can’t perform that action at this time.
0 commit comments