mshr-h / vscode-systemverilog-support

[deprecated]use mshr-h/vscode-verilog-hdl-support
https://github.com/mshr-h/vscode-verilog-hdl-support
MIT License
23 stars 12 forks source link

Unpacked arrays syntax highlighting on multiple lines #9

Closed djoffe closed 7 years ago

djoffe commented 7 years ago

4 has fixed unpacked array support when the closing bracket of the array is on the same line, but the same issue remains if if the closing bracket of the array is on a different line, such as:

assign mem_trx_ex = '{
      c_en     : mem_c_en         ,
      addr     : {mem_addr, 2'h0} ,
      default  : 'hX
   };

ps: Thanks for the extension :)

mshr-h commented 7 years ago

Fixed on version 0.0.8.

djoffe commented 7 years ago

Working like a charm :) Thank you!