From 3055a6e22e32e951fc833daeec2f144ba6f9df79 Mon Sep 17 00:00:00 2001 From: Spencer Date: Sun, 13 Sep 2020 05:01:18 -0700 Subject: [PATCH] Use typescript language for hover tooltip header --- src/languageFeatures.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/languageFeatures.ts b/src/languageFeatures.ts index 3ec1e640..ae50cd59 100644 --- a/src/languageFeatures.ts +++ b/src/languageFeatures.ts @@ -670,7 +670,7 @@ export class QuickInfoAdapter range: this._textSpanToRange(model, info.textSpan), contents: [ { - value: '```js\n' + contents + '\n```\n' + value: '```typescript\n' + contents + '\n```\n' }, { value: documentation + (tags ? '\n\n' + tags : '')