summaryrefslogtreecommitdiffstats
path: root/Completion/User/_mount
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-31 09:38:25 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-31 09:38:25 +0000
commitfd25b24df6b4f098944c4994195d3894a27a8208 (patch)
tree53f7f940844ab34c7349506622fc8241c782f98c /Completion/User/_mount
parentAndrej: fix for ${..//..} with % in search string (11660) (diff)
downloadzsh-fd25b24df6b4f098944c4994195d3894a27a8208.tar
zsh-fd25b24df6b4f098944c4994195d3894a27a8208.tar.gz
zsh-fd25b24df6b4f098944c4994195d3894a27a8208.tar.bz2
zsh-fd25b24df6b4f098944c4994195d3894a27a8208.tar.lz
zsh-fd25b24df6b4f098944c4994195d3894a27a8208.tar.xz
zsh-fd25b24df6b4f098944c4994195d3894a27a8208.tar.zst
zsh-fd25b24df6b4f098944c4994195d3894a27a8208.zip
use compadd -[ak] (11549)
Diffstat (limited to 'Completion/User/_mount')
-rw-r--r--Completion/User/_mount6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/User/_mount b/Completion/User/_mount
index b0d20ca98..50fa769b2 100644
--- a/Completion/User/_mount
+++ b/Completion/User/_mount
@@ -540,7 +540,7 @@ fstype)
compset -P '*,'
_wanted types expl 'file system type' \
- compadd -qS, -M 'L:|no=' - "$fss[@]" && ret=0
+ compadd -qS, -M 'L:|no=' -a fss && ret=0
;;
fsopt)
_tags options || return 1
@@ -569,8 +569,8 @@ udevordir)
mp_tmp=( "${(@)${(@)tmp#* }%% *}" )
_alternative \
- 'devices:device:compadd - $dev_tmp[@]' \
- 'directories:mount point:compadd - $mp_tmp[@]' && ret=0
+ 'devices:device:compadd -a dev_tmp' \
+ 'directories:mount point:compadd -a mp_tmp' && ret=0
fi
;;
esac