-
Notifications
You must be signed in to change notification settings - Fork 90
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
Special instance indentation support #102
Comments
What's the current and what is the desired? |
That's the desired. |
What config do you have with this? |
I currently get: my_module #(
.PARAM1 (VALUE1),
.PARAM2 (VALUE2)
)
u_my_instance(
.port1 (wire1),
.port2 (wire2)
);
logic a; |
You need to keep the indentation of the instance exactly as I copied above and only indent after the instance. |
Seems fine for me my_module #(
.PARAM1 (VALUE1),
.PARAM2 (VALUE2)
)
u_my_instance(
.port1 (wire1),
.port2 (wire2)
);
logic a; |
Ups! Needs an Sorry :) |
This won't be easy at all. I have a feeling there be may be a bug here around preprocessor statements. |
@Lewis could you check how hard it would be to support the following indentation in instances?
The text was updated successfully, but these errors were encountered: