On this page
tmux.CommandError
- Module
- tmux
- Package
- github.com/libtmux/libtmux-go/tmux
- Source
- tmux/command.go
-
CommandError reports a completed failed high-level tmux operation. It matches
ErrCommandthrough errors.Is; callers can recover its fields with errors.As. Generic library operations retain an owned copy of the completed command and output so tmux diagnostics remain available. Operations whose primary payload may contain secrets return an exit-code-only result instead. Callers must treat retained argv and output as potentially sensitive.
5 declared, 0 inherited
Members
- Result attribute Result is the owned completed result, or an exit-code-only redacted result for a secret-bearing operation.
- Subcommand attribute Subcommand is the failed tmux subcommand.
- Error method Error implements error.
- Is method Is reports
ErrNoServerfor a failure that means no tmux server answered: either the command never reached one, or the one it reached is gone. - Unwrap method Unwrap makes CommandError compatible with ErrCommand.