Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Patch to update _file_systems for FreeBSD
- X-seq: zsh-workers 27030
- From: Baptiste Daroussin <baptiste.daroussin@xxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Patch to update _file_systems for FreeBSD
- Date: Thu, 4 Jun 2009 14:24:17 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=GpFzzzwOSHC3cdCpH/p9cfkm60kj2vAW1dkMKrrwTSc=; b=T0YN/DnIko3fzMzhBmLYGh7Kl3MME3kJA1/P61ZGPh1ZV6q4nvVcX8uY6PYLmqeORL RM14Gj1C7WvdPHDsa9LBUgigEdY2exu/W5N6KDGq6hZHsW7J40VMbrHI5eRdH5Ni9fSO daTWKTy7YmOGY1Tfj4x/fk+RG15Kz0ae1Pxtw=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=pRbG7CU1yoXgk6IPmoncg3GWxlEFZsNuAblAdGxevc1nwTmuHPYCb2nsU0siKZHh31 2AINzuBWfF1SVP6QtAgy2yyGuCHKmhWn6qXREGNyNMQ/TH6GDV4KgbgVV2OmH0Vgk8DF cto5gONTzG/pOrAAq3bFxsXhugaqoFXi2HTJw=
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Hi,
here is a patch to update _file_systems for FreeBSD
This is a git diff, please tell me if that's ok for sending patch or not.
regards,
Bapt
diff --git a/Completion/Unix/Type/_file_systems b/Completion/Unix/Type/_file_systems
index fd75e2f..26053c8 100644
--- a/Completion/Unix/Type/_file_systems
+++ b/Completion/Unix/Type/_file_systems
@@ -16,10 +16,15 @@ case $OSTYPE in
;;
osf*) fss=( advfs ufs nfs mfs cdfs ) ;;
solaris*) fss=( ufs nfs hsfs s5fs pcfs cachefs tmpfs ) ;;
- freebsd*|dragonfly*)
+ dragonfly*)
fss=( cd9660 devfs ext2fs fdesc kernfs linprocfs mfs msdos nfs
ntfs null nwfs portal procfs std udf ufs umap union )
;;
+ freebsd*)
+ fss=( cd9660 devfs ext2fs fdesc kernfs linprocfs mfs msdosfs nfs
+ ntfs nullfs nwfs portal procfs smbfs std udf ufs umap unionfs
+ reiserfs xfs)
+ ;;
darwin*)
fss=( afp cd9660 cddafs devfs fdesc hfs lfs msdos nfs
ntfs smbfs synthfs udf ufs volfs webdav )
Messages sorted by:
Reverse Date,
Date,
Thread,
Author