aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/extension.ts
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2019-07-24 15:15:12 +0100
committerKirill Bulatov <[email protected]>2019-07-25 13:17:28 +0100
commitf7b8ae1ee7793bd9b34ecea27037a01159cd5d7a (patch)
tree089f1e5dafc83b9fa63391d06bc274acef297361 /editors/code/src/extension.ts
parent169e69d217600062f6299f7f9521f3f2776d0333 (diff)
Simplify the hints display
Diffstat (limited to 'editors/code/src/extension.ts')
-rw-r--r--editors/code/src/extension.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts
index a0b897385..3965b881a 100644
--- a/editors/code/src/extension.ts
+++ b/editors/code/src/extension.ts
@@ -154,7 +154,6 @@ export function activate(context: vscode.ExtensionContext) {
154 hintsUpdater.loadHints(vscode.window.activeTextEditor).then(() => { 154 hintsUpdater.loadHints(vscode.window.activeTextEditor).then(() => {
155 vscode.window.onDidChangeActiveTextEditor(editor => hintsUpdater.loadHints(editor)); 155 vscode.window.onDidChangeActiveTextEditor(editor => hintsUpdater.loadHints(editor));
156 vscode.workspace.onDidChangeTextDocument(e => hintsUpdater.updateHints(e)); 156 vscode.workspace.onDidChangeTextDocument(e => hintsUpdater.updateHints(e));
157 vscode.workspace.onDidCloseTextDocument(document => hintsUpdater.dropHints(document));
158 vscode.workspace.onDidChangeConfiguration(_ => hintsUpdater.toggleHintsDisplay(Server.config.displayInlayHints)); 157 vscode.workspace.onDidChangeConfiguration(_ => hintsUpdater.toggleHintsDisplay(Server.config.displayInlayHints));
159 }); 158 });
160 } 159 }