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

feat: group flags support #105

Merged
merged 2 commits into from
Feb 22, 2023
Merged

feat: group flags support #105

merged 2 commits into from
Feb 22, 2023

Conversation

leodido
Copy link
Contributor

@leodido leodido commented Feb 22, 2023

Fixes #106

Cobra (see spf13/cobra#1327) doesn't currently natively support grouping flags.

The solution I implemented here does the following:

  1. given a command c
  2. it looks for a FlagGroupAnnotation key in all of its flags annotations
  3. split the flags into different flag sets by group
  4. keeps the flags without annotation in a default group
  5. generates the grouped flag usages by customising the command's usage template

@leodido leodido requested a review from fntlnz as a code owner February 22, 2023 17:58
@leodido leodido self-assigned this Feb 22, 2023
@reviewpad reviewpad bot added medium Pull request is medium enhancement New feature or request needs-review Marks a pull request as waiting for review labels Feb 22, 2023
@leodido leodido changed the title feat: group flags feat: group flags support Feb 22, 2023
@leodido leodido merged commit a220f4c into main Feb 22, 2023
@leodido leodido deleted the feat/grouped-flags branch February 22, 2023 18:10
@github-actions github-actions bot locked and limited conversation to collaborators Feb 22, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request medium Pull request is medium needs-review Marks a pull request as waiting for review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add support for flag groups
1 participant