diff options
| author | Sahandevs <sahandevs@gmail.com> | 2021-02-07 21:59:06 +0330 |
|---|---|---|
| committer | Sahandevs <sahandevs@gmail.com> | 2021-02-07 21:59:06 +0330 |
| commit | 3a0234d60f924cdec4a3fa2fccfe7ed85567f0bc (patch) | |
| tree | 9753eb1ba2ffe2ec720058cb7c2041ae0f6d97cf /editors/code/src/main.ts | |
| parent | 1bb4e973ffaffd78a01ba5abb90096d11a2ddb42 (diff) | |
| download | rust-3a0234d60f924cdec4a3fa2fccfe7ed85567f0bc.tar.gz rust-3a0234d60f924cdec4a3fa2fccfe7ed85567f0bc.zip | |
format
Diffstat (limited to 'editors/code/src/main.ts')
| -rw-r--r-- | editors/code/src/main.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index a5c728b6755..ecbe4e3c98d 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -77,7 +77,7 @@ async function tryActivate(context: vscode.ExtensionContext) { ctx = await Ctx.create(config, context, serverPath, workspaceFolder.uri.fsPath); setContextValue(RUST_PROJECT_CONTEXT_NAME, true) - .then(() => {}, console.error); + .then(() => { }, console.error); // Commands which invokes manually via command palette, shortcut, etc. @@ -144,7 +144,7 @@ async function tryActivate(context: vscode.ExtensionContext) { export async function deactivate() { setContextValue(RUST_PROJECT_CONTEXT_NAME, undefined) - .then(() => {}, console.error); + .then(() => { }, console.error); await ctx?.client.stop(); ctx = undefined; } @@ -189,7 +189,7 @@ async function bootstrapExtension(config: Config, state: PersistentState): Promi log.error(e); if (state.releaseId === undefined) { // Show error only for the initial download vscode.window.showErrorMessage(`Failed to download rust-analyzer nightly ${e}`) - .then(() => {}, console.error); + .then(() => { }, console.error); } return undefined; }); @@ -308,7 +308,7 @@ async function getServer(config: Config, state: PersistentState): Promise<string "If you feel that your platform should be supported, please create an issue " + "about that [here](https://github.com/rust-analyzer/rust-analyzer/issues) and we " + "will consider it." - ).then(() => {}, console.error); + ).then(() => { }, console.error); return undefined; } const ext = platform.indexOf("-windows-") !== -1 ? ".exe" : ""; @@ -437,6 +437,6 @@ function warnAboutExtensionConflicts() { `You have both the ${fst[0]} (${fst[1]}) and ${sec[0]} (${sec[1]}) ` + "plugins enabled. These are known to conflict and cause various functions of " + "both plugins to not work correctly. You should disable one of them.", "Got it") - .then(() => {}, console.error); + .then(() => { }, console.error); }; } |
