chiark / gitweb /
bash completion: use correct yml suffix
authorMarcus Hoffmann <bubu@bubu1.eu>
Thu, 7 Dec 2017 22:29:34 +0000 (23:29 +0100)
committerMarcus Hoffmann <bubu@bubu1.eu>
Thu, 7 Dec 2017 22:29:34 +0000 (23:29 +0100)
completion/bash-completion

index 1a5ac52362bbb63297d720b00a2b1485bd9348c9..3627ae460fd48c74bae1ca1b283c689013fcf281 100644 (file)
@@ -35,7 +35,7 @@ __by_ext() {
 }
 
 __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 ) )
 }