# tmux.RunResult

- **Module:** tmux
- **Package:** github.com/libtmux/libtmux-go/tmux
- **Language:** Go
- **Kind:** struct
- **Source:** https://github.com/libtmux/libtmux-go/blob/52968a3181c1c9e6d1b26c565d4b170968ae61c0/tmux/session_run.go#L41
- **Page:** https://libtmux.org/en/go/latest/reference/tmux-runresult/

RunResult reports how a command finished and what its terminal showed.

## Members

- `Status` (attribute): Status is the command's exit status. It is zero when Signal is set.
- `Signal` (attribute): Signal names the signal that ended the command, when one did. It is empty before tmux 3.3, which reports no signal for a dead pane.
- `Lines` (attribute): Lines is what the terminal showed when the command finished, without the blank lines tmux pads a screen with.
- `Pane` (attribute): Pane is the pane the command ran in. It is live only when the run kept its window.
