Skip to content

Commit d9a8059

Browse files
committed
Add extensions for action to action tooltip
1 parent da6cf74 commit d9a8059

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/views/environment/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export class ActionItem extends EnvironmentItem {
163163

164164
this.iconPath = new vscode.ThemeIcon("github-action", this.context.matched ? new vscode.ThemeColor(ActionItem.matchedColor) : undefined);
165165
this.description = this.context.matched ? l10n.t("search match") : undefined;
166-
this.tooltip = this.action.command;
166+
this.tooltip = `${ this.action.command }\nExtensions: ${this.action.extensions?.join(`, `)}`;
167167
this.resourceUri = vscode.Uri.from({
168168
scheme: ActionItem.context,
169169
authority: this.action.name,

0 commit comments

Comments
 (0)