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
4647logger = logging .getLogger (__name__ )
4748
4849
49- class Server (EnvironmentMixin , OptionsMixin ):
50+ class Server (
51+ EnvironmentMixin ,
52+ OptionsMixin ,
53+ HooksMixin ,
54+ ):
5055 """:term:`tmux(1)` :term:`Server` [server_manual]_.
5156
5257 - :attr:`Server.sessions` [:class:`Session`, ...]
@@ -121,6 +126,8 @@ class Server(EnvironmentMixin, OptionsMixin):
121126
122127 default_option_scope : OptionScope | None = OptionScope .Server
123128 """For option management."""
129+ default_hook_scope : OptionScope | None = OptionScope .Server
130+ """For hook management."""
124131
125132 def __init__ (
126133 self ,
You can’t perform that action at this time.
0 commit comments