mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 16:37:34 +00:00
b85a8bbbfe
Makes it harder to cause issues with aliases, see fish-shell#2245
19 lines
736 B
Fish
19 lines
736 B
Fish
#
|
|
# Completions for fusermount
|
|
#
|
|
# Find mount points, borrowed from umount.fish
|
|
#
|
|
complete -c fusermount --description "Mount point" -x -a '
|
|
(
|
|
cat /etc/mtab | __fish_sgrep "^sshfs" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"| __fish_sgrep "^/"
|
|
cat /etc/mtab | __fish_sgrep "^fuseiso" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"| __fish_sgrep "^/"
|
|
)
|
|
'
|
|
|
|
complete -c fusermount -s h --description "Display help and exit"
|
|
complete -c fusermount -s v --description "Display version and exit"
|
|
complete -c fusermount -s o -x --description "Mount options"
|
|
complete -c fusermount -s u --description "Unmount"
|
|
complete -c fusermount -s q --description "Quiet"
|
|
complete -c fusermount -s z --description "Lazy unmount"
|
|
|