diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-25 07:08:30 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-25 07:08:30 +0100 |
commit | 659b16981a19b3b47f63e6cd4b7f668775e8e9a4 (patch) | |
tree | 0ff97656e30c9b1fe3c4bb96b0171f33890c11ee /editors/code/src/main.ts | |
parent | 78e94e4570f09c8cbe1f8c6802df9b112ca37f08 (diff) | |
parent | 874a5f80c74851aa142a196be49b73f55bd1c619 (diff) |
Merge #5046
5046: Fix progress reporting for flycheck r=matklad a=matklad
bors r+
Co-authored-by: veetaha <[email protected]>
Co-authored-by: Veetaha <[email protected]>
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r-- | editors/code/src/main.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 12b4d0510..cdb63b46f 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts | |||
@@ -5,7 +5,6 @@ import { promises as fs, PathLike } from "fs"; | |||
5 | 5 | ||
6 | import * as commands from './commands'; | 6 | import * as commands from './commands'; |
7 | import { activateInlayHints } from './inlay_hints'; | 7 | import { activateInlayHints } from './inlay_hints'; |
8 | import { activateStatusDisplay } from './status_display'; | ||
9 | import { Ctx } from './ctx'; | 8 | import { Ctx } from './ctx'; |
10 | import { Config, NIGHTLY_TAG } from './config'; | 9 | import { Config, NIGHTLY_TAG } from './config'; |
11 | import { log, assert, isValidExecutable } from './util'; | 10 | import { log, assert, isValidExecutable } from './util'; |
@@ -117,8 +116,6 @@ export async function activate(context: vscode.ExtensionContext) { | |||
117 | 116 | ||
118 | ctx.pushCleanup(activateTaskProvider(workspaceFolder)); | 117 | ctx.pushCleanup(activateTaskProvider(workspaceFolder)); |
119 | 118 | ||
120 | activateStatusDisplay(ctx); | ||
121 | |||
122 | activateInlayHints(ctx); | 119 | activateInlayHints(ctx); |
123 | 120 | ||
124 | vscode.workspace.onDidChangeConfiguration( | 121 | vscode.workspace.onDidChangeConfiguration( |