diff options
-rw-r--r-- | editors/code/src/commands/cargo_watch.ts | 4 | ||||
-rw-r--r-- | editors/code/src/config.ts | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/editors/code/src/commands/cargo_watch.ts b/editors/code/src/commands/cargo_watch.ts index db92e03f4..16aac3758 100644 --- a/editors/code/src/commands/cargo_watch.ts +++ b/editors/code/src/commands/cargo_watch.ts | |||
@@ -57,9 +57,7 @@ export class CargoWatchProvider implements vscode.Disposable { | |||
57 | return; | 57 | return; |
58 | } | 58 | } |
59 | 59 | ||
60 | let command = Server.config.cargoWatchOptions.checkCommand; | 60 | let args = Server.config.cargoWatchOptions.checkCommand + ' --all-targets --message-format json'; |
61 | |||
62 | let args = command + ' --all-targets --message-format json'; | ||
63 | if (Server.config.cargoWatchOptions.checkArguments.length > 0) { | 61 | if (Server.config.cargoWatchOptions.checkArguments.length > 0) { |
64 | // Excape the double quote string: | 62 | // Excape the double quote string: |
65 | args += ' ' + Server.config.cargoWatchOptions.checkArguments; | 63 | args += ' ' + Server.config.cargoWatchOptions.checkArguments; |
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 85366fc34..db46874dc 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts | |||
@@ -1,7 +1,7 @@ | |||
1 | import * as vscode from 'vscode'; | 1 | import * as vscode from 'vscode'; |
2 | 2 | ||
3 | import { Server } from './server'; | ||
4 | import { strict } from 'assert'; | 3 | import { strict } from 'assert'; |
4 | import { Server } from './server'; | ||
5 | 5 | ||
6 | const RA_LSP_DEBUG = process.env.__RA_LSP_SERVER_DEBUG; | 6 | const RA_LSP_DEBUG = process.env.__RA_LSP_SERVER_DEBUG; |
7 | 7 | ||
@@ -116,7 +116,7 @@ export class Config { | |||
116 | 116 | ||
117 | if (config.has('cargo-watch.check-command')) { | 117 | if (config.has('cargo-watch.check-command')) { |
118 | this.cargoWatchOptions.checkCommand = config.get<string>( | 118 | this.cargoWatchOptions.checkCommand = config.get<string>( |
119 | 'cargo-watch.check-command', | 119 | 'cargo-watch.check-command', |
120 | '' | 120 | '' |
121 | ); | 121 | ); |
122 | } | 122 | } |