We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f8eb2 commit 8c779ddCopy full SHA for 8c779dd
src/extensions/rust_analyzer.rs
@@ -112,9 +112,11 @@ impl LanguageClient {
112
Runnable::Bin(runnable) => {
113
format!("term {} {}", runnable.bin, runnable.args.join(" "))
114
}
115
- Runnable::Generic(runnable) => {
116
- format!("term cargo {}", runnable.args.cargo_args.join(" "))
117
- }
+ Runnable::Generic(runnable) => format!(
+ "term cargo {} -- {}",
+ runnable.args.cargo_args.join(" "),
118
+ runnable.args.executable_args.join(" "),
119
+ ),
120
};
121
122
self.vim()?.command(cmd.replace('"', ""))?;
0 commit comments