Manpages in Zsh are the shortest distance between a question and the truth. They live in your shell, ready to unpack every command, option, and flag without leaving the keyboard. If you use Zsh every day, understanding how to work with manpages will cut your latency to zero.
Type man <command> and Zsh launches the manual for that command. But Zsh adds extras that make using manpages smoother than in bare-bones shells. You can use completion to find the exact manpage name. Press Tab after man and Zsh suggests available topics. This is critical when you can’t recall the exact name of a command or when a command has multiple sections.
Zsh can also display manpages with color and search integration. Set LESS_TERMCAP_* variables to highlight headings, bold text, and underlines for instant parsing. For example:
export LESS_TERMCAP_md=$'\e[01;36m'
export LESS_TERMCAP_me=$'\e[0m'
export LESS_TERMCAP_us=$'\e[01;32m'
export LESS_TERMCAP_ue=$'\e[0m'
Now man output becomes scannable at speed. You can move through long pages with /search, n for next match, and N for previous. Zsh keeps you inside the keyboard loop—no mouse, no switching.
For faster reference, Zsh can integrate manpages with its help system. Load the run-help widget and bind it to a key. Place in .zshrc: