-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
Terminal suggest: Come up with list of terminal completion kinds we want to support #239706
Comments
? Should we have a flag icon? Ie. an option without a value Fig's type to icon mapping https://github.com/aws/amazon-q-developer-cli/blob/f66e0b0e917ab185eef528dc36eca56b78ca8b5d/packages/autocomplete-app/src/components/SuggestionIcon.tsx#L151-L160 const srcMap: Partial<Record<SuggestionType | "other", URL>> = {
folder: new URL(localProtocol("path", `${iconPath}${name}`)),
file: new URL(localProtocol("path", `${iconPath}${name}`)),
subcommand: transformIconUri(new URL("fig://icon?type=command")),
option: transformIconUri(new URL("fig://icon?type=option")),
shortcut: new URL(localProtocol("template", "?color=3498db&badge=💡")),
"auto-execute": transformIconUri(new URL("fig://icon?type=carrot")),
arg: transformIconUri(new URL("fig://icon?type=box")),
mixin: new URL(localProtocol("template", "?color=628dad&badge=➡️")),
}; |
Proposed
|
These look good to me. For |
@davidhosejr can you do a holistic audit of the icons currently used in VS Code IntelliSense experience in the editor and see how that tracks with @Tyriar's estimates for what we need for the new Terminal IntelliSense experience? @Tyriar did an audit above and outlined where we'll likely need new icons. |
This will feed into the icons that each of these kinds would have.
Editor intellisense reference
What we have now:
An alias icon was requested in microsoft/vscode-codicons#279
This is what fig defines:
PowerShell command types from
Get-Command
:PowerShell completions types from
TabExpansion2
:The text was updated successfully, but these errors were encountered: