shanmu
shanmu
related issue: https://github.com/clap-rs/clap/issues/3951 https://github.com/clap-rs/clap/issues/3951#issuecomment-2182830925
Closes https://github.com/clap-rs/clap/issues/3920
Closes https://github.com/clap-rs/clap/issues/3919
Closes https://github.com/clap-rs/clap/issues/3916
I found a issue when running the clap_complete tests locally (on the clap master branch) using the command: ```shell= cargo test --features="unstable-dynamic" ``` The result was: ```shell= ---- expected: tests/testsuite/fish.rs:186:20...
This PR aims to simply add support for external subcommand completions. It does not provide any support for forward completions regarding issue https://github.com/clap-rs/clap/issues/5653.
Closes https://github.com/clap-rs/clap/issues/3918
### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Clap Version master ### Describe your...
### Summary Original issue: #6645 Documentation: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#native-completions Testing instructions: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#native-completions Implementation: - [x] #14493 - [x] Add custom completer for `cargo uninstall ` (#14534) - [x] Add custom completer for...
### What does this PR try to resolve? Tracking issue https://github.com/rust-lang/cargo/issues/14520 - Refactor candidates generators to make them testable - Add a test codebase and template project used for building...