VHDLFormatter icon indicating copy to clipboard operation
VHDLFormatter copied to clipboard

Bad identation on comments on muxes outside process

Open rayuthebest opened this issue 6 months ago • 0 comments

When defining comments in a mux, first line comments are not aligned with the rest

Report a bug

Input

b<= a when mux_select = x"0" else    -- Start header field
           sdasd when mux_select = x"1" else -- Timestamp header field
                            zxcz;                                                           -- Data

Expected Behavior

b <= a when mux_select = x"0" else     -- Start header field
     sdasd when mux_select = x"1" else -- Timestamp header field
     zxcz;                             -- Data

Actual Behavior

b <= a when mux_select = x"0" else -- Start header field
     sdasd when mux_select = x"1" else -- Timestamp header field
     zxcz;                             -- Data

rayuthebest avatar Aug 20 '24 13:08 rayuthebest