From 32cc8586e0247d12d0a5445e907d24d6930bb2f4 Mon Sep 17 00:00:00 2001 From: Catherine Date: Sat, 26 Oct 2024 05:33:01 +0000 Subject: [PATCH] SystemVerilog is also supported for hover tooltips. --- src/ui/hover.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/hover.ts b/src/ui/hover.ts index 889ac19..2c1d971 100644 --- a/src/ui/hover.ts +++ b/src/ui/hover.ts @@ -7,7 +7,7 @@ import { DisplayStyle, languageForDisplayStyle, variableDescription, variableVal import { Session } from '../debug/session'; export class HoverProvider implements vscode.HoverProvider { - static readonly SUPPORTED_LANGUAGES: string[] = ['verilog']; + static readonly SUPPORTED_LANGUAGES: string[] = ['verilog', 'systemverilog']; constructor( private rtlDebugger: CXXRTLDebugger