remove XML files from bash completion, they are not supported anymore

This commit is contained in:
Hans-Christoph Steiner 2017-12-08 00:09:41 +01:00
parent bb758d3f00
commit 5c9d46b5b2

View file

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