diff --git a/bash_complitions b/bash_complitions index c419a10..a65fb09 100644 --- a/bash_complitions +++ b/bash_complitions @@ -4,7 +4,7 @@ _complete() { local cur="${COMP_WORDS[COMP_CWORD]}" # Only suggest *.csv and *.neoscim - COMPREPLY=($(compgen -f -X '!*.@(csv|neoscim)' -- "$cur")) + COMPREPLY=($(compgen -f -X '!*.@(csv|nscim)' -- "$cur")) } complete -F _complete sc