diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2001-10-05 01:02:38 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2001-10-05 01:02:38 +0000 |
| commit | 8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633 (patch) | |
| tree | 60bf79c33528157f987eb8737c32cd952e3cbd1f | |
| parent | 15915: completion for bts script (diff) | |
| download | zsh-8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633.tar zsh-8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633.tar.gz zsh-8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633.tar.bz2 zsh-8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633.tar.lz zsh-8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633.tar.xz zsh-8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633.tar.zst zsh-8ad08ab72bbd150dc9c5d7fa6d0a9f86caf9c633.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
@@ -1,3 +1,8 @@ +2001-10-05 Clint Adams <clint@zsh.org> + + * 15938: Completion/Unix/Command/_mount: + complete ext3 mount options. + 2001-09-30 Clint Adams <clint@zsh.org> * 15915: Completion/Debian/Command/_bts: diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount index 0083fe9ad..fcebc5e25 100644 --- a/Completion/Unix/Command/_mount +++ b/Completion/Unix/Command/_mount @@ -321,6 +321,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[@]" @@ -479,7 +485,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} ) ;; |
