mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
fix(macos): fix man-preview for macOS Ventura (#11324)
This commit is contained in:
@@ -224,8 +224,9 @@ function quick-look() {
|
||||
}
|
||||
|
||||
function man-preview() {
|
||||
local location
|
||||
# Don't let Preview.app steal focus if the man page doesn't exist
|
||||
man -w "$@" &>/dev/null && man -t "$@" | open -f -a Preview || man "$@"
|
||||
location=$(man -w "$@") && mandoc -Tpdf $location | open -f -a Preview
|
||||
}
|
||||
compdef _man man-preview
|
||||
|
||||
|
||||
Reference in New Issue
Block a user