bash completion: use correct yml suffix

This commit is contained in:
Marcus Hoffmann 2017-12-07 23:29:34 +01:00
parent 87018d45e2
commit 9270e68fe2

View file

@ -35,7 +35,7 @@ __by_ext() {
} }
__package() { __package() {
files="$(__by_ext txt) $(__by_ext yaml) $(__by_ext json) $(__by_ext xml)" files="$(__by_ext txt) $(__by_ext yml) $(__by_ext json) $(__by_ext xml)"
COMPREPLY=( $( compgen -W "$files" -- $cur ) ) COMPREPLY=( $( compgen -W "$files" -- $cur ) )
} }