From cbaca42c5157846dfc61e2a6d600918bece70aa4 Mon Sep 17 00:00:00 2001 From: MeaTLoTioN Date: Wed, 19 Jun 2024 10:49:02 +0100 Subject: [PATCH] Update bash.d/star_trek_date --- bash.d/star_trek_date | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash.d/star_trek_date b/bash.d/star_trek_date index 2de0a3f..200da75 100644 --- a/bash.d/star_trek_date +++ b/bash.d/star_trek_date @@ -6,7 +6,7 @@ _star_trek_date_complete() COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" - opts="$(star_trek_date vulcan -l|grep -v '^Available languages')" + opts="$(star_trek_date -l|grep -v '^Available languages')" if [ ${COMP_CWORD} = 1 ]; then COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )