about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorAleksei Sidorov <aleksei.sidorov@xdev.re>2019-06-24 13:50:34 +0300
committerAleksei Sidorov <aleksei.sidorov@xdev.re>2019-06-24 13:50:34 +0300
commit28e9e8d4cfdf2a334cde6db7d10e7acb8f5fe8b1 (patch)
treefc7f452477d1483969ea45966d43e4545184a888 /editors/code/src
parentc40ee089f221aa1be74614d7ad875488030e55ff (diff)
downloadrust-28e9e8d4cfdf2a334cde6db7d10e7acb8f5fe8b1.tar.gz
rust-28e9e8d4cfdf2a334cde6db7d10e7acb8f5fe8b1.zip
Fix code after "apply suggestions"
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/commands/cargo_watch.ts12
-rw-r--r--editors/code/src/commands/watch_status.ts4
-rw-r--r--editors/code/src/config.ts16
3 files changed, 19 insertions, 13 deletions
diff --git a/editors/code/src/commands/cargo_watch.ts b/editors/code/src/commands/cargo_watch.ts
index 16aac3758fc..13adf4c10bd 100644
--- a/editors/code/src/commands/cargo_watch.ts
+++ b/editors/code/src/commands/cargo_watch.ts
@@ -43,7 +43,9 @@ export class CargoWatchProvider implements vscode.Disposable {
         this.diagnosticCollection = vscode.languages.createDiagnosticCollection(
             'rustc'
         );
-        this.statusDisplay = new StatusDisplay(Server.config.cargoWatchOptions.checkCommand);
+        this.statusDisplay = new StatusDisplay(
+            Server.config.cargoWatchOptions.command
+        );
         this.outputChannel = vscode.window.createOutputChannel(
             'Cargo Watch Trace'
         );
@@ -57,10 +59,12 @@ export class CargoWatchProvider implements vscode.Disposable {
             return;
         }
 
-        let args = Server.config.cargoWatchOptions.checkCommand + ' --all-targets --message-format json';
-        if (Server.config.cargoWatchOptions.checkArguments.length > 0) {
+        let args =
+            Server.config.cargoWatchOptions.command +
+            ' --all-targets --message-format json';
+        if (Server.config.cargoWatchOptions.command.length > 0) {
             // Excape the double quote string:
-            args += ' ' + Server.config.cargoWatchOptions.checkArguments;
+            args += ' ' + Server.config.cargoWatchOptions.arguments;
         }
         // Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes
         if (process.platform === 'win32') {
diff --git a/editors/code/src/commands/watch_status.ts b/editors/code/src/commands/watch_status.ts
index 91bc7195b2e..6c1f9041bad 100644
--- a/editors/code/src/commands/watch_status.ts
+++ b/editors/code/src/commands/watch_status.ts
@@ -30,7 +30,9 @@ export class StatusDisplay implements vscode.Disposable {
                         this.packageName
                     }] ${this.frame()}`;
                 } else {
-                    this.statusBarItem!.text = `cargo ${this.command} ${this.frame()}`;
+                    this.statusBarItem!.text = `cargo ${
+                        this.command
+                    } ${this.frame()}`;
                 }
             }, 300);
 
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index c1dd2c056f5..10e98d75342 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -25,8 +25,8 @@ export class Config {
     public cargoWatchOptions: CargoWatchOptions = {
         enableOnStartup: 'ask',
         trace: 'off',
-        checkArguments: '',
-        checkCommand: ''
+        arguments: '',
+        command: ''
     };
 
     private prevEnhancedTyping: null | boolean = null;
@@ -107,16 +107,16 @@ export class Config {
             );
         }
 
-        if (config.has('cargo-watch.check-arguments')) {
-            this.cargoWatchOptions.checkArguments = config.get<string>(
-                'cargo-watch.check-arguments',
+        if (config.has('cargo-watch.arguments')) {
+            this.cargoWatchOptions.arguments = config.get<string>(
+                'cargo-watch.arguments',
                 ''
             );
         }
 
-        if (config.has('cargo-watch.check-command')) {
-            this.cargoWatchOptions.checkCommand = config.get<string>(
-                'cargo-watch.check-command',
+        if (config.has('cargo-watch.command')) {
+            this.cargoWatchOptions.command = config.get<string>(
+                'cargo-watch.command',
                 ''
             );
         }