about summary refs log tree commit diff
path: root/editors/code/src/commands.ts
diff options
context:
space:
mode:
authorLukas Wirth <lukastw97@gmail.com>2022-07-17 17:38:56 +0200
committerBruno Ortiz <brunortiz11@gmail.com>2023-05-02 10:56:13 -0300
commitaf999f152bcec9a0fb9c792bbb14eba093ddeec8 (patch)
tree8ddbc1d9f350b28d01af0bc09650e173bbe799ab /editors/code/src/commands.ts
parentd1721b11e923df58489578b48fbc15105e960aa4 (diff)
downloadrust-af999f152bcec9a0fb9c792bbb14eba093ddeec8.tar.gz
rust-af999f152bcec9a0fb9c792bbb14eba093ddeec8.zip
Reformat VSCode client code
Diffstat (limited to 'editors/code/src/commands.ts')
-rw-r--r--editors/code/src/commands.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts
index fb6778b687f..7fe32754c90 100644
--- a/editors/code/src/commands.ts
+++ b/editors/code/src/commands.ts
@@ -8,7 +8,7 @@ import { applySnippetWorkspaceEdit, applySnippetTextEdits } from "./snippets";
 import { spawnSync } from "child_process";
 import { RunnableQuickPick, selectRunnable, createTask, createArgs } from "./run";
 import { AstInspector } from "./ast_inspector";
-import { isRustDocument, isCargoTomlDocument, sleep, isRustEditor, RustEditor } from './util';
+import { isRustDocument, isCargoTomlDocument, sleep, isRustEditor, RustEditor } from "./util";
 import { startDebugSession, makeDebugConfig } from "./debug";
 import { LanguageClient } from "vscode-languageclient/node";
 import { LINKED_COMMANDS } from "./client";