We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem:
Currently, cargo.el hardcodes commands that it can execute. It's not possible to execute a command that cargo.el is unaware of.
cargo.el
Solution:
cargo provides cargo --list command which lists all available commands. It can be used to select a command using completing-read.
cargo
cargo --list
completing-read
This approach is used in mix.el - https://github.com/ayrat555/mix.el
mix.el
The text was updated successfully, but these errors were encountered:
I implemented it in https://github.com/ayrat555/cargo-mode
Sorry, something went wrong.
No branches or pull requests
Problem:
Currently,
cargo.el
hardcodes commands that it can execute. It's not possible to execute a command thatcargo.el
is unaware of.Solution:
cargo
providescargo --list
command which lists all available commands. It can be used to select a command usingcompleting-read
.This approach is used in
mix.el
- https://github.com/ayrat555/mix.elThe text was updated successfully, but these errors were encountered: