Not to be confused with Lumpin Proletariat https://youtu.be/q-iKremh3Dc
Perhaps you are referring to the function provided by the ohmyzsh macos plugin?
I've just now fixed it by passing the PostScript through ghostscript's ps2pdf: man-preview () { man -w "$@" &> /dev/null && man -t "$@" | ps2pdf - - | open -f -a Preview || man "$@" }
It looks like it's trying to pipe PostScript to Preview, which as of Ventura, no longer supports PostScript.
Not to be confused with Lumpin Proletariat https://youtu.be/q-iKremh3Dc
Perhaps you are referring to the function provided by the ohmyzsh macos plugin?
I've just now fixed it by passing the PostScript through ghostscript's ps2pdf: man-preview () { man -w "$@" &> /dev/null && man -t "$@" | ps2pdf - - | open -f -a Preview || man "$@" }
It looks like it's trying to pipe PostScript to Preview, which as of Ventura, no longer supports PostScript.