From f1ba963a3097106ad6daa41d04c51b7f2d418d8c Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Thu, 25 Jul 2019 15:54:20 +0300 Subject: npm run fix --- editors/code/src/commands/inlay_hints.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'editors/code/src/commands/inlay_hints.ts') diff --git a/editors/code/src/commands/inlay_hints.ts b/editors/code/src/commands/inlay_hints.ts index ba9966161..8154af8dc 100644 --- a/editors/code/src/commands/inlay_hints.ts +++ b/editors/code/src/commands/inlay_hints.ts @@ -25,7 +25,11 @@ export class HintsUpdater { public async loadHints( editor: vscode.TextEditor | undefined ): Promise { - if (this.displayHints && editor !== undefined && this.isRustDocument(editor.document)) { + if ( + this.displayHints && + editor !== undefined && + this.isRustDocument(editor.document) + ) { await this.updateDecorationsFromServer( editor.document.uri.toString(), editor -- cgit v1.2.3