From 356ff2ec817dbc65f27ec37e644204359ec84210 Mon Sep 17 00:00:00 2001 From: Christopher Vogt Date: Tue, 13 Sep 2016 13:51:17 +0100 Subject: add fish shell task name completions and fix bash task name completions --- shell-integration/cbt-completions.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell-integration/cbt-completions.bash') diff --git a/shell-integration/cbt-completions.bash b/shell-integration/cbt-completions.bash index c591321..925ba4b 100755 --- a/shell-integration/cbt-completions.bash +++ b/shell-integration/cbt-completions.bash @@ -5,7 +5,7 @@ __cbt() COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" - opts="$(cbt usage)" + opts="$(cbt taskNames)" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 } -- cgit v1.2.3