diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-10-05 01:45:41 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-10-05 01:45:41 +0000 |
commit | d13c8e8d6620d4b30e2d15c2eb1ffeede531ce88 (patch) | |
tree | 90416d691d420e8efb77152ffc9bad0aa8f5f2b7 | |
parent | f7fa53ecaa9a6ef8b443d58e105057fc5a6ab719 (diff) | |
download | zsh-d13c8e8d6620d4b30e2d15c2eb1ffeede531ce88.tar.gz zsh-d13c8e8d6620d4b30e2d15c2eb1ffeede531ce88.tar.xz zsh-d13c8e8d6620d4b30e2d15c2eb1ffeede531ce88.zip |
15941: complete reiserfs mount options.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Unix/Command/_mount | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index cad77f74c..b9814cfa2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-10-05 Clint Adams <clint@zsh.org> + * 15941: Completion/Unix/Command/_mount: + complete reiserfs mount options. + * 15940: Completion/Unix/Command/_mount: complete -o utf8 for mount -t vfat. diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount index dead111b0..4e2b935fd 100644 --- a/Completion/Unix/Command/_mount +++ b/Completion/Unix/Command/_mount @@ -435,6 +435,17 @@ if (( ! $+_fs_any )); then 'sunit[specify stripe unit]:size:' 'swidth[specify stripe width]:size:' ) + _fs_reiserfs=( + 'conv[mount 3.5 fs using 3.6 format for new objects]' + 'hash[choose hash type]:hash function:(rupasov tea r5 detect)' + '(no_unhashed_relocation)hashed_relocation[tune the block allocator]' + 'noborder[disable border allocator algorithm]' + 'nolog[disable journalling]' + 'notail[disable packing of files into the tree]' + '(hashed_relocation)no_unhashed_relocation[tune the block allocator]' + 'replayonly[replay but do not mount]' + 'resize[assume the device has this many blocks]:number of blocks:' + ) ;; freebsd*) _fs_any=( @@ -550,7 +561,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 ext3 xfs ) + hfs ntfs qnx4 smbfs udf ext3 xfs reiserfs ) [[ -r /proc/filesystems ]] && fss=( ${$(</proc/filesystems)#nodev} ) ;; |