libtmux.options.OptionsMixin.show_options
Python
- Python
- Ruby Unavailable
- Lua Unavailable
- TypeScript Unavailable
- Rust Unavailable
- Go Unavailable
- Java Unavailable
- .NET Unavailable
- C++ Unavailable
- Swift Unavailable
- Module
- libtmux.options
- Declared in
- OptionsMixin
- Package
- libtmux
- Source
- src/libtmux/options.py
- show_options ( self , global_ : bool = False , scope : OptionScope | _DefaultOptionScope | None = DEFAULT_OPTION_SCOPE , include_hooks : bool | None = None , include_inherited : bool | None = None , quiet : bool | None = None ) ExplodedComplexUntypedOptionsDict
-
Return all options for the target.
Examples
>>> options = server.show_options()>>> isinstance(options, dict)True>>> 'buffer-limit' in optionsTrue- Parameters
-
-
global_ ( bool ) – Pass
-gflag for global options, default False. -
scope ( OptionScope | _DefaultOptionScope | None ) – Option scope (Server/Session/Window/Pane), defaults to object's scope.
-
include_hooks ( bool | None ) – Include hook options (
-Hflag). -
include_inherited ( bool | None ) – Include inherited options (
-Aflag). -
quiet ( bool | None ) – Suppress errors silently (
-qflag). added 0.56
-
- Returns
-
ExplodedComplexUntypedOptionsDict Dictionary with all options, arrays exploded and values converted.
- Raises
0 declared, 0 inherited