about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-12-16 16:25:39 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-12-16 16:25:39 +0000
commite6d2f7ba01b9f9af36c873a5066eaf655f37d02b (patch)
tree09cbd5222cb0e12854d3c89c062a284171ae4837 /Completion
parent9f60e77f35eae5227e4ec10c8be3e244140bec6a (diff)
downloadzsh-e6d2f7ba01b9f9af36c873a5066eaf655f37d02b.tar.gz
zsh-e6d2f7ba01b9f9af36c873a5066eaf655f37d02b.tar.xz
zsh-e6d2f7ba01b9f9af36c873a5066eaf655f37d02b.zip
19299: try to handle completion of devices better
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_mount8
1 files changed, 5 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount
index 691bfa7bb..bcb59dd6c 100644
--- a/Completion/Unix/Command/_mount
+++ b/Completion/Unix/Command/_mount
@@ -785,9 +785,11 @@ devordir)
       'directories:mount point:compadd -a mp_tmp' && ret=0
     ;;
   *)
-    _alternative \
-      'devices:device:_files -P /dev/ -W /dev' \
-      'directories:mount point:_directories' && ret=0
+    if (( ${${(s.,.)opt_args[-o]}[(I)loop(|=*)]} )) ; then
+      _wanted device-files expl 'loop device file' _files && ret=0
+    else
+      _wanted files expl 'device or mount point' _files -g "*(-%,-/)" && ret=0
+    fi
     ;;
   esac
   ;;