mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-11 13:01:28 +02:00
manual/7925
This commit is contained in:
parent
a72797846d
commit
5d8cded987
1 changed files with 13 additions and 3 deletions
|
@ -45,13 +45,23 @@ do
|
||||||
[[ ${what[(w)6]:t} != ${what[(w)1]} ]] && run-help ${what[(w)6]:t}
|
[[ ${what[(w)6]:t} != ${what[(w)1]} ]] && run-help ${what[(w)6]:t}
|
||||||
;;
|
;;
|
||||||
(*( is a * function))
|
(*( is a * function))
|
||||||
builtin functions ${what[(w)1]} | ${=PAGER:-more}
|
case ${what[(w)1]} in
|
||||||
;;
|
(comp*) man zshcompsys;;
|
||||||
|
(zf*) man zshftpsys;;
|
||||||
|
(*) builtin functions ${what[(w)1]} | ${=PAGER:-more};;
|
||||||
|
esac;;
|
||||||
(*( is a * builtin))
|
(*( is a * builtin))
|
||||||
case ${what[(w)1]} in
|
case ${what[(w)1]} in
|
||||||
(compctl) man zshcompctl;;
|
(compctl) man zshcompctl;;
|
||||||
(bindkey) man zshzle;;
|
(comp*) man zshcompwid;;
|
||||||
|
(bindkey|vared|zle) man zshzle;;
|
||||||
(*setopt) man zshoptions;;
|
(*setopt) man zshoptions;;
|
||||||
|
(cap|getcap|setcap) ;&
|
||||||
|
(clone) ;&
|
||||||
|
(ln|mkdir|mv|rm|rmdir|sync) ;&
|
||||||
|
(sched) ;&
|
||||||
|
(stat) man zshmodules;;
|
||||||
|
(zftp) man zshftpsys;;
|
||||||
(*) man zshbuiltins;;
|
(*) man zshbuiltins;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue