You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While usually having a descriptive enough title for command/option groups is all you need, it can be useful to have an extra line just below the title, before the list of commands/options for a bit of extra information.
Using some Git commands as an example:
click.rich_click.COMMAND_GROUPS= {
"git": [
{
"name": "Working area",
"description": "Start a working area (see also: git help tutorial)",
"commands": ["clone", "init"],
},
{
"name": "Current changes",
"description": "Work on the current change (see also: git help everyday)",
"commands": ["add", "mv", "restore", "rm"],
},
{
"name": "State",
"description": "Examine the history and state (see also: git help revisions)",
"commands": ["bisect", "diff", "grep", "log", "show", "status"]
}
]
}
Happy to help on this!
The text was updated successfully, but these errors were encountered:
It'd be great if it could support either markdown or rich, like some of the other help texts. I could imagine having some nice inline documentation that way 😊
While usually having a descriptive enough title for command/option groups is all you need, it can be useful to have an extra line just below the title, before the list of commands/options for a bit of extra information.
Using some Git commands as an example:
Happy to help on this!
The text was updated successfully, but these errors were encountered: