libtmux.Window._show_option_raw
Python
- Python
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go Unavailable
- Java Unavailable
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Module
- libtmux
- Declared in
- Window
- Package
- libtmux
- Source
- src/libtmux/options.py
-
Inherited from
libtmux.options.OptionsMixinReturn raw option output for 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_raw('exit-unattached', global_=True)<libtmux.common.tmux_cmd object at ...>>>> MyServer()._show_option_raw('exit-unattached', global_=True).stdout['exit-unattached off']>>> isinstance(MyServer()._show_option_raw('exit-unattached', global_=True).stdout, list)True>>> isinstance(MyServer()._show_option_raw('exit-unattached', global_=True).stdout[0], str)True- Parameters
-
-
g ( bool ) – Use
global_instead. deprecated 0.50.0
-
- Raises
0 declared, 0 inherited