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 1818from libtmux ._internal .query_list import QueryList
1919from libtmux .common import tmux_cmd
2020from libtmux .constants import OptionScope
21+ from libtmux .hooks import HooksMixin
2122from libtmux .neo import fetch_objs
2223from libtmux .pane import Pane
2324from libtmux .session import Session
4243logger = logging .getLogger (__name__ )
4344
4445
45- class Server (EnvironmentMixin , OptionsMixin ):
46+ class Server (
47+ EnvironmentMixin ,
48+ OptionsMixin ,
49+ HooksMixin ,
50+ ):
4651 """:term:`tmux(1)` :term:`Server` [server_manual]_.
4752
4853 - :attr:`Server.sessions` [:class:`Session`, ...]
@@ -108,6 +113,8 @@ class Server(EnvironmentMixin, OptionsMixin):
108113
109114 default_option_scope : OptionScope | None = OptionScope .Server
110115 """For option management."""
116+ default_hook_scope : OptionScope | None = OptionScope .Server
117+ """For hook management."""
111118
112119 def __init__ (
113120 self ,
You can’t perform that action at this time.
0 commit comments