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 1919from libtmux ._internal .query_list import QueryList
2020from libtmux .common import tmux_cmd
2121from libtmux .constants import OptionScope
22+ from libtmux .hooks import HooksMixin
2223from libtmux .neo import fetch_objs
2324from libtmux .pane import Pane
2425from libtmux .session import Session
5051logger = logging .getLogger (__name__ )
5152
5253
53- class Server (EnvironmentMixin , OptionsMixin ):
54+ class Server (
55+ EnvironmentMixin ,
56+ OptionsMixin ,
57+ HooksMixin ,
58+ ):
5459 """:term:`tmux(1)` :term:`Server` [server_manual]_.
5560
5661 - :attr:`Server.sessions` [:class:`Session`, ...]
@@ -125,6 +130,8 @@ class Server(EnvironmentMixin, OptionsMixin):
125130
126131 default_option_scope : OptionScope | None = OptionScope .Server
127132 """For option management."""
133+ default_hook_scope : OptionScope | None = OptionScope .Server
134+ """For hook management."""
128135
129136 def __init__ (
130137 self ,
You can’t perform that action at this time.
0 commit comments