zeek/auxil/vcpkg/scripts/vcpkg_completion.zsh
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

10 lines
268 B
Bash

_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