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