aboutsummaryrefslogtreecommitdiff
path: root/scripts/vcpkg_completion.zsh
blob: ee499f67161567b937a15e4c2e2a1c6e9377508f (plain)
1
2
3
4
5
6
7
8
9

_vcpkg_completions()
{
  local vcpkg_executable=${COMP_WORDS[0]}
  local remaining_command_line=${COMP_LINE:(${#vcpkg_executable}+1)}
  COMPREPLY=($(${vcpkg_executable} autocomplete "${remaining_command_line}" -- 2>/dev/null))
}

complete -F _vcpkg_completions vcpkg