mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-12 23:56:29 +00:00
Add mage completions for working with magefiles
This commit is contained in:
parent
f0c51256fc
commit
67617a157a
22
assets/default/fish/completions/mage.fish
Normal file
22
assets/default/fish/completions/mage.fish
Normal file
@ -0,0 +1,22 @@
|
||||
# completions for mage build system for golang
|
||||
|
||||
function __mage_list_targets --description 'list all mage targets'
|
||||
mage -l | awk '/^ / { gsub(/\*/, "", $1); print $1; }'
|
||||
end
|
||||
|
||||
complete --command mage --old-option h --no-files --description 'show help'
|
||||
complete --command mage --old-option clean --no-files --description 'clean out generated binaries'
|
||||
complete --command mage --old-option init --no-files --description 'create a starting template if no magefile exists'
|
||||
complete --command mage --old-option l --no-files --description 'list mage targets'
|
||||
complete --command mage --old-option version --no-files --description 'show version'
|
||||
complete --command mage --old-option d --description 'dir to read magefiles from'
|
||||
complete --command mage --old-option f --no-files --description 'force recreation of compiled magefile'
|
||||
complete --command mage --old-option goarch --no-files --description 'set GOARCH for binary created by -compile'
|
||||
complete --command mage --old-option gocmd --no-files --description 'use given go binary for compilation'
|
||||
complete --command mage --old-option goos --no-files --description 'set GOOS for binary created by -compile'
|
||||
complete --command mage --old-option keep --no-files --description 'keep intermediate magefiles after running'
|
||||
complete --command mage --old-option t --no-files --description 'timeout duration'
|
||||
complete --command mage --old-option v --no-files --description 'verbose logging'
|
||||
complete --command mage --old-option w --description 'working dir'
|
||||
complete --command mage --old-option compile --description 'compile binary to path'
|
||||
complete --command mage --no-files -a '(__mage_list_targets)' --description 'Target'
|
Loading…
Reference in New Issue
Block a user