-
Notifications
You must be signed in to change notification settings - Fork 466
Add workspace/executeCommand request #292
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
Add workspace/executeCommand request #292
Conversation
/** | ||
* Execute Workspace Command | ||
*/ | ||
export const EXECUTE_WORKSPACE_COMMAND = 'java.execute.workspaceCommand'; |
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.
please add command java.execute.workspaceCommand
to the activationEvents
list in package.json
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.
Echo here. This is to make sure the extension is properly activated before the command is triggered.
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.
Already fixed.
03f243d
to
e630e2e
Compare
/** | ||
* Execute Workspace Command | ||
*/ | ||
export const EXECUTE_WORKSPACE_COMMAND = 'java.execute.workspaceCommand'; |
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.
Echo here. This is to make sure the extension is properly activated before the command is triggered.
@yaohaizh can you please solve the merge conflict so we can merge it? |
Signed-off-by: Yaohai Zheng <[email protected]>
e630e2e
to
ee10581
Compare
Resolved conflication |
Signed-off-by: Yaohai Zheng [email protected]