summaryrefslogtreecommitdiff
path: root/Completion/Unix/Command/_mount
diff options
context:
space:
mode:
authorAndrey Borzenkov <bor@users.sourceforge.net>2001-07-13 12:30:20 +0000
committerAndrey Borzenkov <bor@users.sourceforge.net>2001-07-13 12:30:20 +0000
commited914f48f36eac575e024abe75290243f8fe223e (patch)
tree1889c68f54576d3c3532987bf36cf1e9d074612e /Completion/Unix/Command/_mount
parent45051d58ab773ebd65f1ec07e58d1b43587d1a4f (diff)
downloadzsh-ed914f48f36eac575e024abe75290243f8fe223e.tar.gz
zsh-ed914f48f36eac575e024abe75290243f8fe223e.zip
15390: Cygwin support
Diffstat (limited to 'Completion/Unix/Command/_mount')
-rw-r--r--Completion/Unix/Command/_mount44
1 files changed, 44 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount
index 0083fe9ad..5d0b9a0e6 100644
--- a/Completion/Unix/Command/_mount
+++ b/Completion/Unix/Command/_mount
@@ -1,5 +1,49 @@
#compdef mount umount
+if [[ "$OSTYPE" == cygwin ]]; then
+ if [[ "$service" == mount ]] ; then
+ _arguments -s \
+ - mount \
+ '(-b -t --text)--binary[Unix line endings LF]' \
+ '(--binary -t --text)-b[Unix line endings LF]' \
+ '(-f)--force[be silent]' \
+ '(--force)-f[be silent]' \
+ '(-s -u --user)--system[system-wide mount point]' \
+ '(--system -u --user)-s[system-wide mount point]' \
+ '(-t -b --binary)--text[(default) DOS line endings CR-LF]' \
+ '(--text -b --binary)-t[(default) DOS line endings CR-LF]' \
+ '(-u -s --system)--user[(default)user private mount point]' \
+ '(--user -s --system)-u[(default)user private mount point]' \
+ '(-x -X --cygwin-executable)--executable[all files under mountpoint are executables]' \
+ '(--executable -X --cygwin-executable)-x[all files under mountpoint are executables]' \
+ '(-X -x --executable)--cygwin-executable[all files under mountpoint are cygwin executables]' \
+ '(--cygwin-executable -x --executable)-X[all files under mountpoint are cygwin executables]' \
+ ':Windows path:' \
+ ':Unix path:_path_files -P/ -W "(/)" -/' \
+ - control \
+ '(-i -p --show-cygdrive-prefix -c --change-cygdrive-prefix)--import-old-mounts[import old mounts]' \
+ '(--import-old-mounts -p --show-cygdrive-prefix -c --change-cygdrive-prefix)-i[import old mounts]' \
+ '(-p -i --import-old-mounts -c --change-cygdrive-prefix)--show-cygdrive-prefix[show cygdrive prefix]' \
+ '(--show-cygdrive-prefix -i --import-old-mounts -c --change-cygdrive-prefix)-p[show cygdrive prefix]' \
+ '(-c -i --import-old-mounts -p --show-cygdrive-prefix)--change-cygdrive-prefix[cygdrive prefix]:cygdrive prefix (POSIX path):_files -P/ -W "(/)" -/' \
+ '(--change-cygdrive-prefix -i --import-old-mounts -p --show-cygdrive-prefix)-c[cygdrive prefix]:cygdrive prefix (POSIX path):_files -P/ -W "(/)" -/'
+
+ return
+ else
+ local line
+ local -a wpaths upaths
+ mount | while read -r line; do
+ [[ $line == ?:\ * ]] && continue
+ wpaths=($wpaths ${line%% on*})
+ upaths=($upaths ${${line##*on }%% type*})
+ done
+ _alternative \
+ 'windowspath:WIndows path:compadd -a wpaths' \
+ 'unixpath:Unix path:compadd -a upaths'
+ return
+ fi
+fi
+
# This is table-driven: the tables for the values for the different
# file system types are directly below. The tables describing the
# arguments for the `mount' command for different operating systems