You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like Nushell completions are available in the release tarball.
Current documentation doesn't mention nu completions, and they can't be "generated" at runtime with --completions yet.
The script uses the JSON-parsing invocation suggested in #974, as opposed to a Clap v4 approach. Is there more work to do here or is the current script satisfactory?
The text was updated successfully, but these errors were encountered:
Thanks for opening this issue! That's definitely an omission on my part, I never thought about the fact that nushell completions couldn't be generated with the --completions subcommand.
Fixed in #2140, which prints the script with --completions nushell.
Improvements to the current script are welcome. Clap doesn't have nushell support, so the current script was just written by hand.
The current script doesn't pose any maintenance issues, but it's very limited. I believe it only completes recipe names and nothing else.
It would be great to integrate clap_complete_nushell, although the script generated by clap_complete_nushell would have to be modified to also complete recipe names. I'll open an issue to track this.
It looks like Nushell completions are available in the release tarball.
Current documentation doesn't mention nu completions, and they can't be "generated" at runtime with
--completions
yet.The script uses the JSON-parsing invocation suggested in #974, as opposed to a Clap v4 approach. Is there more work to do here or is the current script satisfactory?
The text was updated successfully, but these errors were encountered: