SystemVerilog icon indicating copy to clipboard operation
SystemVerilog copied to clipboard

[Highlight] fix syntax highlight when using 'automatic' keyword

Open donlon opened this issue 5 months ago • 0 comments

Hi, This PR fixes syntax highlighting in some 'automatic' keyword related context. For example

module automatic test_mod;
    task test();
        automatic test_pkg::cls obj;
    endtask
endmodule

Before: sv-before

After: sv-after

donlon avatar Nov 09 '25 12:11 donlon