feat: add more completions for package managers#34
Conversation
|
commit: |
| completion.command('audit', 'Run security audit'); | ||
| completion.command('list', 'List installed packages'); | ||
| // Package management | ||
| const addCmd = completion.command('add', 'Install packages'); |
There was a problem hiding this comment.
as i mentioned, these options and commands them themselves have values which we need autocompletions for. only adding names won't show the library as a more feasible option compared to the traditional autocompletion scripts that these package managers provide.
There was a problem hiding this comment.
again, descriptions should be retrieved from --help.
because these descriptions are volatile and we should always show what the actual package manager shows. otherwise, it'd be an inconsistency between actual descriptions and what we provide.
No description provided.