libtmux.Server.list_commands
- Module
- libtmux
- Declared in
- Server
- Package
- libtmux
- Source
- src/libtmux/server.py
- Other languages
- Ruby Lua TypeScript Rust GoJava.NETC++ Swift
-
List tmux commands via
$ tmux list-commands.In other ports List the commands this tmux understands
- Ruby No source-verified Ruby equivalent is recorded for this operation.
- Lua No source-verified Lua equivalent is recorded for this operation.
- TypeScript
server.Server.listCommands - Rust no equivalent on
Server - Go
tmux.Server.ListCommands - Java
io.github.libtmux.Server.Server.listCommands - .NET
LibTmux.Server.GetCommandsAsync - C++
libtmux::Server::commands - Swift no equivalent on
Server
Examples
>>> result = server.list_commands(command_name='send-keys')>>> len(result) >= 1Trueconst commands = await server.listCommands();commands.includes("new-window"); // true0 declared, 0 inherited