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

When inserting a function comment, the comment block is corrupted #329

Open
kenkopelson opened this issue Nov 28, 2023 · 0 comments
Open
Labels

Comments

@kenkopelson
Copy link

Describe the bug
When I type "/**" over a C++ method, the comment block has a closing sequence (*/) right in the middle of the block, before any of the parameters are added.

Code example

/**<return> (<--typed this above the method)
void ArmSolver::setArmBase(Position* armBase) {
}

Expected result

/**
 * @brief 
 * 
 *
 * @param armBase 
 */
void ArmSolver::setArmBase(Position* armBase) {
}

Actual result

/**
 * @brief 
 * 
 */
 * @param armBase 
 */
void ArmSolver::setArmBase(Position* armBase) {
}

Your System:

  • OS: [Windows 10]
  • VS Code Version [e.g. 1.84.2]
  • I have the latest version of your plugin. I did not install anything.

Context:
This used to work without causing this bug. It seems like it showed up after an update to your plugin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant