summaryrefslogtreecommitdiffstats
path: root/Completion/BSD/Command/_portmaster
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2010-06-06 13:44:11 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2010-06-06 13:44:11 +0000
commita54fdc70be299a203a51d69c4e823f209a4c06ca (patch)
tree6d1c67674d388e1ca64c4210e283d1bd11eea2c7 /Completion/BSD/Command/_portmaster
parent27983: colours could be output twice (diff)
downloadzsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.gz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.bz2
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.lz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.xz
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.tar.zst
zsh-a54fdc70be299a203a51d69c4e823f209a4c06ca.zip
unposted: fix incorrectly capitalized completion descriptions
Diffstat (limited to 'Completion/BSD/Command/_portmaster')
-rw-r--r--Completion/BSD/Command/_portmaster10
1 files changed, 5 insertions, 5 deletions
diff --git a/Completion/BSD/Command/_portmaster b/Completion/BSD/Command/_portmaster
index 0fd34dc60..4c16e2d1b 100644
--- a/Completion/BSD/Command/_portmaster
+++ b/Completion/BSD/Command/_portmaster
@@ -77,7 +77,7 @@ _portmaster() {
_arguments -s \
$standalone_args \
$common_args \
- '*:Packages and Ports:_portmaster_pkgs_and_ports'
+ '*:packages and ports:_portmaster_pkgs_and_ports'
else
case "$words[2]" in
--clean-distfiles|--clean-distfiles-all|--check-depends|--check-port-dbdir|--version|-help|-h)
@@ -86,14 +86,14 @@ _portmaster() {
*)
if (( $words[(I)-(e|r)] ));then
_arguments -s \
- '*:Packages:_portmaster_pkgs'
+ '*:packages:_portmaster_pkgs'
elif (( kid=$words[(I)-o] ));then
if (( CURRENT == $kid + 1 ));then
_arguments -s \
- '*:Ports replacing:_portmaster_ports'
+ '*:ports replacing:_portmaster_ports'
elif (( CURRENT == $kid + 2 )); then
_arguments -s \
- '*:Package to replace:_portmaster_pkgs'
+ '*:package to replace:_portmaster_pkgs'
else
return 0
fi
@@ -102,7 +102,7 @@ _portmaster() {
else
_arguments -s \
$common_args \
- '*:Packages and Ports:_portmaster_pkgs_and_ports'
+ '*:packages and ports:_portmaster_pkgs_and_ports'
fi
;;
esac