devops-works / binenv

One binary to rule them all. Manage all those pesky binaries (kubectl, helm, terraform, ...) easily.
MIT License
366 stars 44 forks source link

Fix completion for tools using __complete function #249

Closed xx4h closed 3 months ago

xx4h commented 3 months ago

Before completion was only working when the actual binary was using ShellCompNoDescRequestCmd (completeNoDesc). But some tools (like kubectl and helm) use ShellCompRequestCmd (complete) which needs to be forwarded to the binary as well to make it work

leucos commented 3 months ago

Thanks a lot @xx4h :pray: