Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 10 lines 343 B view raw
1# credits: 2# https://godoc.org/github.com/jessevdk/go-flags#hdr-Completion 3# https://github.com/concourse/concourse/issues/1309#issuecomment-452893900 4_fly_compl() { 5 args=("${COMP_WORDS[@]:1:$COMP_CWORD}") 6 local IFS=$'\n' 7 COMPREPLY=($(GO_FLAGS_COMPLETION=1 ${COMP_WORDS[0]} "${args[@]}")) 8 return 0 9} 10complete -F _fly_compl fly