Skip to content

Conversation

@rossmeier
Copy link
Contributor

Thanks so much for this project!

Here is a little problem + fix I found using vhdl blocks

Before:

b_bla: block is
    signal s1: std_logic;
    signal s2: std_logic;
begin

    s1 <= s2;end block;

After:

b_bla: block is
    signal s1: std_logic;
    signal s2: std_logic;
begin
    s1 <= s2;
end block;

I cross referenced with how this is solved for process and it seems alright to me now.

Remove an unecessary double line break after the begin token and add a
missing line break before the `end block;`
@Schottkyc137 Schottkyc137 merged commit 6953027 into VHDL-LS:master Oct 19, 2025
10 checks passed
@Schottkyc137
Copy link
Contributor

Thanks for the fix!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants