vscode-systemverilog-support icon indicating copy to clipboard operation
vscode-systemverilog-support copied to clipboard

Hover code does not work for custom types and interfaces

Open bjaminn opened this issue 8 years ago • 2 comments

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.

bjaminn avatar Mar 27 '17 13:03 bjaminn

The hover function currently supports on;y integer and real types. https://www.doulos.com/knowhow/sysverilog/tutorial/datatypes/

mshr-h avatar Mar 28 '17 04:03 mshr-h

Thanks for the update. I was trying to figure out how to label this as an Enhancement or Feature Request but could not.

bjaminn avatar Mar 28 '17 12:03 bjaminn