mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-29 16:25:35 +01:00
40264: _man: Complete all sections after '-a'.
Followup to 37634.
This commit is contained in:
parent
24337b3c60
commit
385cb9b9f0
2 changed files with 8 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
2017-01-05 Daniel Shahaf <d.s@daniel.shahaf.name>
|
2017-01-05 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
||||||
|
* 40264: Completion/Unix/Command/_man: Complete all sections
|
||||||
|
after '-a'.
|
||||||
|
|
||||||
* users/22320: Etc/BUGS: Add 40240, label 40106.
|
* users/22320: Etc/BUGS: Add 40240, label 40106.
|
||||||
|
|
||||||
2017-01-05 Oliver Kiddle <opk@zsh.org>
|
2017-01-05 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
|
@ -51,7 +51,11 @@ _man() {
|
||||||
sect="${sect//:/|}"
|
sect="${sect//:/|}"
|
||||||
sect="${sect//,/|}"
|
sect="${sect//,/|}"
|
||||||
elif (( CURRENT > 2 )); then
|
elif (( CURRENT > 2 )); then
|
||||||
sect=$words[2]
|
case $words[2] in
|
||||||
|
(-a) sect='*';;
|
||||||
|
(-*) ;;
|
||||||
|
(*) sect=$words[2];;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $sect = (<->*|1M|l|n) || $sect = *\|* ]]; then
|
if [[ $sect = (<->*|1M|l|n) || $sect = *\|* ]]; then
|
||||||
|
|
Loading…
Reference in a new issue