Execute commands from the browser #978
Answered
by
luiz290788
luiz290788
asked this question in
Q&A
-
Is there any way to execute a command in the language server from the browser without having to import I'm having trouble building the application with vitejs when importing |
Beta Was this translation helpful? Give feedback.
Answered by
luiz290788
Mar 2, 2023
Replies: 1 comment 7 replies
-
I found a solution languageClient.sendRequest(ExecuteCommandRequest.method, {
command: 'myCommand',
arguments: ['arguments', 'to', 'my', 'command'],
}) |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
luiz290788
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found a solution