vscode-systemverilog-support
vscode-systemverilog-support copied to clipboard
Hover code does not work for custom types and interfaces
The hover functionality does not work when working with custom types.
typedef enum logic [1:0] {
FIXED = 2'b00,
INCR = 2'b01,
WRAP = 2'b10
} BurstType;
BurstType wburst_type;
assign wburst_type = FIXED;
In the example wbusrt_type will not be highlighted.
The hover function currently supports on;y integer and real types. https://www.doulos.com/knowhow/sysverilog/tutorial/datatypes/
Thanks for the update. I was trying to figure out how to label this as an Enhancement or Feature Request but could not.