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

verible-verilog-format does not work correctly from VSCode-SystemVerilog #244

Open
hwmland opened this issue Dec 10, 2024 · 0 comments
Open

Comments

@hwmland
Copy link

hwmland commented Dec 10, 2024

verible-verilog-format does add empty line after each comment with //

module serialdp (
    input clk,
    input in,
    input reset,  // Synchronous reset
    output reg [7:0] out_byte,
    output done
); 

becomes after formatting this:

module serialdp (
    input clk,
    input in,
    input reset,  // Synchronous reset

    output reg [7:0] out_byte,
    output done
); 

Each attempt to format adds new empty line (for each line with comment)
I disabled all other extensions. When I run verible-verilog-format from command-line everything is OK.
I have no command-line parameters, I'm running on Windows, verible installed in c:\verible (so no spaces) directory with full path provided in command. Any idea? I don't what to try next :(

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

1 participant