diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-06-04 12:52:30 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-06-04 12:52:30 +0000 |
commit | dd01bd64df5dbeb29659e746043dc283e051807c (patch) | |
tree | e8f017e0c9af1bcc4fbde3d3f9a6f87bb8e11b08 | |
parent | e8a93f46a5ad378f7a2e9b21d9ae662ccff305db (diff) | |
download | zsh-dd01bd64df5dbeb29659e746043dc283e051807c.tar.gz zsh-dd01bd64df5dbeb29659e746043dc283e051807c.tar.xz zsh-dd01bd64df5dbeb29659e746043dc283e051807c.zip |
Baptiste Daroussin: 27030: update _file_systems for FreeBSD
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Type/_file_systems | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index cc5e145d0..9bdf88564 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-06-04 Peter Stephenson <pws@csr.com> + * Baptiste Daroussin: 27030: Completion/Unix/Type/_file_systems: + update for FreeBSD. + * Baptiste Daroussin: 27029: Completion/BSD/Command/_pfctl: new completion. @@ -11822,5 +11825,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4710 $ +* $Revision: 1.4711 $ ***************************************************** diff --git a/Completion/Unix/Type/_file_systems b/Completion/Unix/Type/_file_systems index fd75e2fa5..26053c8ed 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 ) |