What is the purpose of --stdio
option?
#155
-
I defined Lines 13 to 14 in bc6069a Because this option existed before the change. Lines 18 to 22 in 60e489e However, I could not find anywhere in the source code where this option is used. What is the purpose of this option? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In lsp's, you can communicate in two ways. Either rpc or remote procedure call, or stdio where we just send to io. |
Beta Was this translation helpful? Give feedback.
VS Code LSP client adds
--stdio
to command line args. It cannot be avoided as long as I know. This is the reason I added this option.