summaryrefslogtreecommitdiff
path: root/plugins/cargo
AgeCommit message (Collapse)Author
2021-12-28refactor(plugins): generate completion functions in the backgroundMarc Cornellà
2021-12-28chore: fix comment bulk replaceMarc Cornellà
2021-12-28refactor: handle `$0` according to the Zsh plugin standard (#10518)Curtis Rueden
For details and rationale, see: https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html Closes #10518
2021-12-28refactor(rust)!: merge `cargo` and `rustup` plugins into `rust` plugin (#10270)Carlo Sala
BREAKING CHANGE: `cargo` and `rustup` plugins have been moved to the `rust` plugin since they're part of the Rust toolchain. If you're using these, update your .zshrc file to use `rust` instead. Closes #10270 Co-authored-by: Marc Cornellà <hello@mcornella.com>
2021-12-28refactor(cargo): generate completion file in the backgroundMarc Cornellà
2021-09-15refactor(plugins): remove old generated completion filesMarc Cornellà
This removes .gitignore plugin files and adds a force-rm of the old completion file, which ignores any errors if the file doesn't exist.
2021-09-15fix(core): move plugin-generated completion files to ↵Marc Cornellà
`$ZSH_CACHE_DIR/completions` Fixes #10183
2021-09-15fix(plugins): fix `_comps` error in completion generation plugins (#10190)Marc Cornellà
Fixes #10190
2021-09-07fix: automatically create completion for `cargo` and `rustup` plugins (#10087)Carlo Sala
2021-05-03fix(cargo): complete flags for default cargo aliases (#9692)Ben Goldberg
By default, cargo provides alias for some commonly used functions. This patch makes it that those alias will complete the same as their full commands. Default alias: b -> build c -> check t -> test r -> run Since cargo allows users to define custom alias it would be nice if oh-my-zsh automatically detected those and preformed completions as such but that would be a much more complex patch.
2020-10-21Grammar: remove hyphens from predicate adjective “up to date” (#9356)Lucas Larson
https://english.stackexchange.com/a/180617 https://web.archive.org/web/20190728053012id_/grammarist.com/usage/up-to-date/#text-60
2019-10-19cargo: update completion to latest version (cdac4a8)Marc Cornellà
https://github.com/rust-lang/cargo/blob/cdac4a8/src/etc/_cargo
2019-03-25cargo: update completion (#5757)Marc Cornellà
2019-03-25Update READMEMarc Cornellà
2019-03-25Update _cargo completion to 0.34.0 versionMarc Cornellà
2018-11-28-r is not available for bsd sedFrederick Zhang
2018-09-24fix subcommands completionFrederick Zhang
2018-09-24fix escapingFrederick Zhang
2018-09-24redir debug output to stdFrederick Zhang
2018-09-24complete installed sub-commandsFrederick Zhang
2018-09-24complete --message-formatFrederick Zhang
2018-09-24add description for --colorFrederick Zhang
2018-09-24target name completionFrederick Zhang
2017-11-01Update rust plugin for latest rustc (#6342)bjorn3
* Update for latest rustc * Some debug option updates * Add some cargo flags * Fix bug in cargo plugin
2016-10-04Add README for the cargo pluginMarc Cornellà
2016-10-04Add completion for cargo, the rust build toolZaki Manian
Copy of the official repository: https://github.com/rust-lang/cargo/tree/master/src/etc Signed-off-by: Marc Cornellà <marc.cornella@live.com>
2016-10-03Added simple support for Cargo -Henrik Johansson
the Rust build system