fix(macos): print usage for `man-preview` with no args (#12147)

master
Johan Kaving 3 years ago committed by GitHub
parent 8980ffebbc
commit 428866e28d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      plugins/macos/macos.plugin.zsh

@ -224,6 +224,8 @@ function quick-look() {
} }
function man-preview() { function man-preview() {
[[ $# -eq 0 ]] && >&2 echo "Usage: $0 command1 [command2 ...]" && return 1
local page local page
for page in "${(@f)"$(man -w $@)"}"; do for page in "${(@f)"$(man -w $@)"}"; do
command mandoc -Tpdf $page | open -f -a Preview command mandoc -Tpdf $page | open -f -a Preview

Loading…
Cancel
Save