We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6cf74 commit d9a8059Copy full SHA for d9a8059
src/ui/views/environment/actions.ts
@@ -163,7 +163,7 @@ export class ActionItem extends EnvironmentItem {
163
164
this.iconPath = new vscode.ThemeIcon("github-action", this.context.matched ? new vscode.ThemeColor(ActionItem.matchedColor) : undefined);
165
this.description = this.context.matched ? l10n.t("search match") : undefined;
166
- this.tooltip = this.action.command;
+ this.tooltip = `${ this.action.command }\nExtensions: ${this.action.extensions?.join(`, `)}`;
167
this.resourceUri = vscode.Uri.from({
168
scheme: ActionItem.context,
169
authority: this.action.name,
0 commit comments