From 1323d15333c31a07307876c5beb5628ef0aa733e Mon Sep 17 00:00:00 2001 From: Rushmore75 Date: Tue, 18 Nov 2025 10:11:01 -0700 Subject: [PATCH] actually use the filetype --- bash_complitions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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