libtmux.Server.show_option
- Module
- libtmux
- Declared in
- Server
- Package
- libtmux
- Source
- src/libtmux/options.py
- Other languages
- Ruby Lua TypeScript RustGo Java .NET C++ Swift
-
Inherited from
libtmux.options.OptionsMixinReturn option value for the target.
Examples
>>> import typing as t>>> from libtmux.common import tmux_cmd>>> from libtmux.constants import OptionScope>>> class MyServer(OptionsMixin):... socket_name = server.socket_name... def cmd(self, cmd: str, *args: object):... cmd_args: t.List[t.Union[str, int]] = [cmd]... if self.socket_name:... cmd_args.insert(0, f"-L{self.socket_name}")... cmd_args.insert(0, "-f/dev/null")... return tmux_cmd(*cmd_args, *args)...... default_option_scope = OptionScope.Server>>> MyServer().cmd('new-session', '-d')<libtmux.common.tmux_cmd object at ...>>>> MyServer().show_option('exit-unattached', global_=True)False- Parameters
-
-
g ( bool ) – Use
global_instead. deprecated 0.50.0
-
- Raises
In other ports Read one server option
- Ruby No source-verified Ruby equivalent is recorded for this operation.
- Lua
libtmux.Server:get_option - TypeScript no single-option read;
Server.showOptionsreturns them all - Rust
server.Server.typed_option - Go
tmux.Server.RawOption - Java reached through
Server.options, whoseOptions.getreads one - .NET reached through
Server.Options, whoseTmuxOptions.GetAsyncreads one - C++ no single-option read;
Server::optionsreturns them all - Swift
Server.option(_:scope:)
0 declared, 0 inherited