#compdef manora local -a opts opts=( {-m,--menu}'[Open a TUI menu that allows searching through local man pages, downloading man pages from , and displaying them as PDF files (default operation)]' {-s,--save}'[(Arg ) Save into the PDF file (or a "man_.pdf" file if is not specified)]' {-d,--download}'[Skip searching for the man page locally and directly download it from instead (e.g. "manora --download ", "manora --download --save ")]' {-h,--help}'[Display the help message]' {-V,--version}'[Display version information]' ) local man_pages=(${(f)"$(man -k . | awk '{print $1}')"}) _arguments $opts '*::man-pages:(${man_pages})'