libtmux.Window.set_option
- Module
- libtmux
- Declared in
- Window
- Package
- libtmux
- Source
- src/libtmux/options.py
- Other languages
- Ruby LuaTypeScriptRustGo Java .NET C++Swift
-
Inherited from
libtmux.options.OptionsMixinSet option for tmux target.
Wraps
$ tmux set-option <option> <value>.- Parameters
- Raises
In other ports Set a window option
- Ruby No source-verified Ruby equivalent is recorded for this operation.
- Lua
libtmux.Window:set_option - TypeScript
window.Window.setOption - Rust
window.Window.set_option - Go
tmux.Window.SetOption - Java reached through
Window.options, whoseOptionscarries the write - .NET reached through
Window.Options, whoseTmuxOptionscarries the write - C++
libtmux::Window::set_option - Swift
Server.setOption(_:to:scope:)
Examples
>>> import typing as t>>> from libtmux.common import tmux_cmd>>> from libtmux.constants import OptionScope>>> from libtmux._internal.sparse_array import SparseArray>>> 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().set_option('escape-time', 1250)<libtmux.options.MyServer object at ...>>>> MyServer()._show_option('escape-time')1250>>> MyServer().set_option('escape-time', 495)<libtmux.options.MyServer object at ...>>>> MyServer()._show_option('escape-time')495await window.setOption("automatic-rename", "off");0 declared, 0 inherited