Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

un-necessary padspaces added to case statement #20

Open
1 task done
ryoi6 opened this issue Sep 8, 2019 · 1 comment
Open
1 task done

un-necessary padspaces added to case statement #20

ryoi6 opened this issue Sep 8, 2019 · 1 comment

Comments

@ryoi6
Copy link

ryoi6 commented Sep 8, 2019

Report a bug

When case statement is having its assignment aligned, the numbers of spaces is also copied between the signal and "<=".

Selected options,

  • align signs in all places

Input

case state is
    when idle => state <= idle;
    when run => state <= run;
    when others => state <= idle;
end case;

Expected Behavior

case state is
    when idle   => state <= idle;
    when run    => state <= run;
    when others => state <= idle;
end case;

Actual Behavior

case state is
    when idle   => state   <= idle;
    when run    => state    <= run;
    when others => state <= idle;
end case;
@g2384
Copy link
Owner

g2384 commented Nov 11, 2019

Thanks, 👍 Good spot, not easy to 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

No branches or pull requests

2 participants