1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-31 18:10:56 +01:00

15938: complete ext3 mount options

This commit is contained in:
Clint Adams 2001-10-05 00:58:40 +00:00
parent 1bbe1d1b0a
commit ad3d63eeeb
2 changed files with 12 additions and 1 deletions

View file

@ -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:

View file

@ -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} )
;;