diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-10-05 00:58:40 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-10-05 00:58:40 +0000 |
commit | ad3d63eeeb08377a0d68846b2db9de5858f865a2 (patch) | |
tree | 9722716dc4b2e79a2b2f102e20f2a6f33fb53e7e | |
parent | 1bbe1d1b0a60d0a35259f6dc4adf53fb1cbfe759 (diff) | |
download | zsh-ad3d63eeeb08377a0d68846b2db9de5858f865a2.tar.gz zsh-ad3d63eeeb08377a0d68846b2db9de5858f865a2.tar.xz zsh-ad3d63eeeb08377a0d68846b2db9de5858f865a2.zip |
15938: complete ext3 mount options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_mount | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 86a383796..96ae6a123 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-10-05 Clint Adams <clint@zsh.org> + + * 15938: Completion/Unix/Command/_mount: + complete ext3 mount options. + 2001-10-02 Clint Adams <clint@zsh.org> * 15919: Src/linklist.c, Src/Modules/tcp.c, Src/Modules/tcp.h: diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount index 5d0b9a0e6..69885d240 100644 --- a/Completion/Unix/Command/_mount +++ b/Completion/Unix/Command/_mount @@ -365,6 +365,12 @@ if (( ! $+_fs_any )); then 'fat[specify fat type]:fat type (bit):(12 16)' 'quiet[quiet mode]' ) + _fs_ext3=( + "$_fs_ext2[@]" + 'journal[update fs journal]:update or inode number:(update)' + 'noload[do not load journal]' + 'data[specify mode for data]:journalling mode:(journal ordered writeback)' + ) _fs_msdos=( "$_fs_fat[@]" ) _fs_umsdos=( "$_fs_fat[@]" ) _fs_vfat=( "$_fs_fat[@]" @@ -523,7 +529,7 @@ if [[ "$service" = mount ]]; then ) fss=( minix ext ext2 xiafs hpfs msdos umsdos vfat proc nfs iso9660 smbfs ncpfs affs ufs romfs sysv adfs autofs coda devpts efs - hfs ntfs qnx4 smbfs udf ) + hfs ntfs qnx4 smbfs udf ext3 ) [[ -r /proc/filesystems ]] && fss=( ${$(</proc/filesystems)#nodev} ) ;; |