You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

completion.sh.hbs 751B

12345678910111213141516171819202122232425262728
  1. ###-begin-{{app_name}}-completions-###
  2. #
  3. # yargs command completion script
  4. #
  5. # Installation: {{app_path}} completion >> ~/.bashrc
  6. # or {{app_path}} completion >> ~/.bash_profile on OSX.
  7. #
  8. _yargs_completions()
  9. {
  10. local cur_word args type_list
  11. cur_word="${COMP_WORDS[COMP_CWORD]}"
  12. args=("${COMP_WORDS[@]}")
  13. # ask yargs to generate completions.
  14. type_list=$({{app_path}} --get-yargs-completions "${args[@]}")
  15. COMPREPLY=( $(compgen -W "${type_list}" -- ${cur_word}) )
  16. # if no match was found, fall back to filename completion
  17. if [ ${#COMPREPLY[@]} -eq 0 ]; then
  18. COMPREPLY=( $(compgen -f -- "${cur_word}" ) )
  19. fi
  20. return 0
  21. }
  22. complete -F _yargs_completions {{app_name}}
  23. ###-end-{{app_name}}-completions-###