1
0
mirror of https://github.com/go-task/task.git synced 2025-02-13 13:59:32 +02:00

Add zsh completion

This commit is contained in:
Shota Sawada 2018-04-27 17:50:56 +09:00
parent 2cb2668803
commit e540e752f2
No known key found for this signature in database
GPG Key ID: B6F39101A8E3508C

24
completion/zsh/_task Normal file
View File

@ -0,0 +1,24 @@
#compdef task
# Listing commands from Taskfile.yml
function __list() {
local -a scripts
if [ -f Taskfile.yml ]; then
scripts=($(task -l | sed '1d' | sed 's/://' | awk '{ print $2 }'))
_describe 'script' scripts
fi
}
_arguments \
'(-d --dir)'{-d,--dir}': :_files' \
'(-f --force)'{-f,--force} \
'(-i --init)'{-i,--init} \
'(-l --list)'{-l,--list} \
'(-s --silent)'{-s,--silent} \
'(--status)'--status \
'(-v --verbose)'{-v,--verbose} \
'(--version)'--version \
'(-w --watch)'{-w,--watch} \
'(- *)'{-h,--help} \
'*: :__list' \