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