mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Fix paran mismatch bug in umount completions that popped up when dropping the N_ script
darcs-hash:20070223163630-ac50b-efa267645ce113eab089d49d240bb3e00e9f07e5.gz
This commit is contained in:
parent
e50f43416b
commit
08eb92707a
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
||||||
#
|
#
|
||||||
# Find all mountpoints
|
# Find all mountpoints
|
||||||
#
|
#
|
||||||
complete -c umount --description "Mount point") -x -a '(cat /etc/mtab | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/"'
|
complete -c umount --description "Mount point" -x -a '(cat /etc/mtab | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/")'
|
||||||
|
|
||||||
complete -c umount -s V --description "Display version and exit"
|
complete -c umount -s V --description "Display version and exit"
|
||||||
complete -c umount -s h --description "Display help and exit"
|
complete -c umount -s h --description "Display help and exit"
|
||||||
|
|
Loading…
Reference in a new issue