libtmux.Pane.unset_option
- Module
- libtmux
- Declared in
- Pane
- Package
- libtmux
- Source
- src/libtmux/options.py
- Other languages
- Ruby LuaTypeScriptRustGo Java .NET C++Swift
- unset_option ( self , option : str , unset_panes : bool | None = None , global_ : bool | None = None , ignore_errors : bool | None = None , scope : OptionScope | _DefaultOptionScope | None = DEFAULT_OPTION_SCOPE ) Self
-
Inherited from
libtmux.options.OptionsMixinUnset option for tmux target.
Wraps
$ tmux set-option -u <option>/$ tmux set-option -U <option>- Parameters
-
-
option ( str ) – option to unset, e.g. 'aggressive-resize'
-
- Raises
Discussed in Options and hooks
In other ports Unset a pane option
- Ruby No source-verified Ruby equivalent is recorded for this operation.
- Lua
libtmux.Pane:unset_option - TypeScript
pane.Pane.unsetOption - Rust
pane.Pane.unset_option - Go
tmux.Pane.UnsetOption - Java reached through
Pane.options, whoseOptionscarries the write - .NET reached through
Pane.Options, whoseTmuxOptionscarries the write - C++
libtmux::Pane::unset_option - Swift
Server.unsetOption(_:scope:)
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().set_option('escape-time', 1250)<libtmux.options.MyServer object at ...>>>> MyServer()._show_option('escape-time')1250>>> MyServer().unset_option('escape-time')<libtmux.options.MyServer object at ...>>>> isinstance(MyServer()._show_option('escape-time'), int)Trueawait pane.unsetOption("remain-on-exit");0 declared, 0 inherited