We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given this example code:
/// This function does nothing pub fn foo() void {}
Actual behavior:
If cursor is placed in a single doc comment line, doing ctrl+/ causes the following:
ctrl+/
/ This function does nothing pub fn foo() void {}
Which is not valid zig code.
Expected behavior:
// /// This function does nothing pub fn foo() void {}
Which is similar to what I get when highlighting the whole block:
// /// This function does nothing // pub fn foo() void {}
The text was updated successfully, but these errors were encountered:
VS Code does not support declaring multiple line comments for a language. microsoft/vscode#64659
Sorry, something went wrong.
No branches or pull requests
Given this example code:
Actual behavior:
If cursor is placed in a single doc comment line, doing
ctrl+/
causes the following:Which is not valid zig code.
Expected behavior:
Which is similar to what I get when highlighting the whole block:
The text was updated successfully, but these errors were encountered: