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

Lightbulb for Doxygen generation displayed for function that already has Doxygen comment #10009

Closed
michelleangela opened this issue Oct 14, 2022 · 0 comments
Assignees
Labels
bug Feature: Doc comments An issue related to code comments shown in hover, completion, and signature help. fixed Check the Milestone for the release in which the fix is or will be available. Language Service quick fix
Milestone

Comments

@michelleangela
Copy link
Contributor

michelleangela commented Oct 14, 2022

The code action lightbulb is displayed to suggest Doxygen generation for a function that already has a Doxygen comment.

Should lightbulb display be consistent for all styles or should lightbulb only get display when there is no Doxygen comment?

Lightbulb is only displayed for comment style blocks:

image
image
image

Lightbulb does not get displayed for the following comment style blocks:
image

Code sample in text:

/**
 * @brief some description
 * @param a
 */
void orange(int a) {}

/*!
 * @brief some description
 * @param a
 */
void blue(int a) {}

/*!
   @brief some description
   @param a
*/
void green(int a) {}




///
/// @brief some description
/// @param a
///
void abc(int a) {}


//!
//! @brief some description
//! @param a
//!
void xyz(int a) {}
@michelleangela michelleangela added bug Language Service Feature: Doc comments An issue related to code comments shown in hover, completion, and signature help. labels Oct 14, 2022
@michelleangela michelleangela added this to the On Deck milestone Oct 14, 2022
@sean-mcmanus sean-mcmanus self-assigned this Oct 21, 2022
@sean-mcmanus sean-mcmanus modified the milestones: On Deck, 1.13.3 Oct 21, 2022
@sean-mcmanus sean-mcmanus modified the milestones: 1.13.3, 1.13.4 Oct 26, 2022
@sean-mcmanus sean-mcmanus added the fixed Check the Milestone for the release in which the fix is or will be available. label Oct 31, 2022
@github-actions github-actions bot locked and limited conversation to collaborators Jan 3, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Feature: Doc comments An issue related to code comments shown in hover, completion, and signature help. fixed Check the Milestone for the release in which the fix is or will be available. Language Service quick fix
Projects
None yet
Development

No branches or pull requests

2 participants