Hilmar Wiegand
Hilmar Wiegand
I'd be interested in tackling this issue if there is a way to implement this that we can agree on. It seems the main problem here is that it's not...
> the stack traces if something goes wrong gets exceedingly messy How so? With the proposed solution, fetching a field that is marked as batched would simply be divided into...
Is anyone looking at working on this? I'm getting back into contributing and I'd be interested in helping with this if there's a good chance it will be included in...
Had a few busy weeks but I'm back to working on this now. After trying to fit zsh support into the existing code, I realized that different shells might need...
Sure thing! When trying to adapt the cobra zsh completion script, I noticed that no `IFS` argument is used, `COMP_CWORD` is not offered by zsh, and `COMP_TYPE` is not expressed...
> Looks like CURRENT is used. How is it different than COMP_CWORD? Yes, my bad. I overlooked that, you're correct on that one. > I'm fine changing how we express...
Hi, I'm interested in helping with this this I'm developing a few personal tools using clap that would hugely benefit from dynamic completions. Is there any good issues that nobody...
Alright, had a busy week, so I'm only getting back around to this now. I've looked at the work done in #3656, and it looks like the next steps to...
Started work [here](https://github.com/happenslol/clap/tree/implement-dynamic-zsh-completion/clap_complete/src/dynamic). I'm looking at [cobra](https://github.com/spf13/cobra) for zsh completions since `argcomplete` basically takes the easy way out and tells people to enable bash completion support for zsh :sweat_smile:
Yeah, the cobra code is very well documented and easy to adapt. One thing I was wondering about is the way options like `space`/`no-space` are passed to the completion command....