You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside "systemverilog.tmLanguage" file, "/*" and "//" have the same scope: "punctuation.definition.comment.systemverilog".
Instead, the body of the block comment has the scope "comment.block.systemverilog" and the body of the line comment has the scope "comment.line.double-slash.systemverilog".
This leads to a situation where you can have two colors for the body of the block and line comment but not for the start of the comment area.
Is it possible to modify the scopes for the start of the comment areas to reflect its type? (Eg "/*": punctuation.definition.comment.block.systemverilog, "//": punctuation.definition.comment.line.systemverilog)
vs
The text was updated successfully, but these errors were encountered:
Inside "systemverilog.tmLanguage" file, "/*" and "//" have the same scope: "punctuation.definition.comment.systemverilog".
Instead, the body of the block comment has the scope "comment.block.systemverilog" and the body of the line comment has the scope "comment.line.double-slash.systemverilog".
This leads to a situation where you can have two colors for the body of the block and line comment but not for the start of the comment area.
Is it possible to modify the scopes for the start of the comment areas to reflect its type? (Eg "/*": punctuation.definition.comment.block.systemverilog, "//": punctuation.definition.comment.line.systemverilog)
vs
The text was updated successfully, but these errors were encountered: