For example, the GitHub CLI spec has a root level --help option that's marked as persistent, but --help does not appear in the root command suggestions or any of its subcommands:
|
options: [ |
|
{ |
|
name: "--help", |
|
description: "Show help for command", |
|
isPersistent: true, |
|
}, |
|
], |
|
}; |

For example, the GitHub CLI spec has a root level
--helpoption that's marked as persistent, but--helpdoes not appear in the root command suggestions or any of its subcommands:vscode/extensions/terminal-suggest/src/completions/gh.ts
Lines 3393 to 3400 in 6a3b902