diff options
| author | Peter Grayson <pete@jpgrayson.net> | 2019-03-08 12:43:04 -0500 | 
|---|---|---|
| committer | Brian Ashworth <bosrsf04@gmail.com> | 2019-03-08 14:29:39 -0500 | 
| commit | b7fe5097e949b9bfde6fd52f26d2599068833563 (patch) | |
| tree | 37459687d2f8a639bc0439c98fdb00bf87d61ad8 /completions/zsh | |
| parent | 7f700e08ac8ac95c395b54c86b40d2fc79242310 (diff) | |
| download | sway-b7fe5097e949b9bfde6fd52f26d2599068833563.tar.xz | |
Add -p/--pretty option to swaymsg
This new option forces pretty (non-raw/non-JSON) output. By default, when
not using a tty, swaymsg outputs using the "raw" format. This makes it
impossible to, for example, pipe the pretty output to a pager such as
`less` since piping does not use a tty.
The new -p/--pretty option gives the user explicit control over the output
format while retaining the default tty-dependent behavior.
Signed-off-by: Peter Grayson <pete@jpgrayson.net>
Diffstat (limited to 'completions/zsh')
| -rw-r--r-- | completions/zsh/_swaymsg | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/completions/zsh/_swaymsg b/completions/zsh/_swaymsg index 0ba45d4a..c11fa990 100644 --- a/completions/zsh/_swaymsg +++ b/completions/zsh/_swaymsg @@ -28,10 +28,11 @@ types=(  )  _arguments -s \ -	'(-v --version)'{-v,--version}'[Show the version number and quit]' \ -	'(-m --monitor)'{-m,--monitor}'[Monitor until killed (-t SUBSCRIBE only)]' \  	'(-h --help)'{-h,--help}'[Show help message and quit]' \ +	'(-m --monitor)'{-m,--monitor}'[Monitor until killed (-t SUBSCRIBE only)]' \ +	'(-p --pretty)'{-p,--pretty}'[Use pretty output even when not using a tty]' \  	'(-q --quiet)'{-q,--quiet}'[Be quiet]' \  	'(-r --raw)'{-r,--raw}'[Use raw output even if using a tty]' \  	'(-s --socket)'{-s,--socket}'[Use the specified socket path]:files:_files' \ -	'(-t --type)'{-t,--type}'[Specify the message type]:type:{_describe "type" types}' +	'(-t --type)'{-t,--type}'[Specify the message type]:type:{_describe "type" types}' \ +	'(-v --version)'{-v,--version}'[Show the version number and quit]' | 
