-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Align 'ActionProvider' related entities with VS Code #6302
Conversation
Signed-off-by: Roman Nikitenko <rnikiten@redhat.com>
aa4ff45
to
9d6bf5f
Compare
@eclipse-theia/task-extension Could you please review and test it? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works again 👍
I am able to see the action providers (cog icon) when prompted to select a task to run
(run task...
). Clicking the icon successfully opens the tasks.json
.
I'll give others, perhaps from the @eclipse-theia/task-extension a chance to try it :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested.
The cog icon is displayed in the current row and by click opens tasks.json
@RomanNikitenko please merge |
getActions(element: any, item: any): Promise<IAction[]>; | ||
hasSecondaryActions(element: any, item: any): boolean; | ||
getSecondaryActions(element: any, item: any): Promise<IAction[]>; | ||
getActionItem(element: any, item: any, action: IAction): any; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
less exposed types, awesome!
@vince-fugnitto @mmorhun |
What it does
How to test
Go to
Terminal
=>Run Task
menu.Selected item should contain
Configure Task
action icon (gear wheel)Clicking cog icon should:
detected
task - opentasks.json
file and copy the configurationconfigured
one - just opentasks.json
Review checklist
Reminder for reviewers
Signed-off-by: Roman Nikitenko rnikiten@redhat.com