How to use the language server for developing my extension #6921
|
I want to develop an extension for C++ editing enhancement. I want to utilize the existing C++ language server in this cpptool so I don't have to reinvent the wheel to parse the source files. But I still have no idea how to achieve that after reading all the documentation about the language server development tutorial on vscode's official site. Thanks for any help and information about it. |
Answered by
michelleangela
Feb 8, 2021
Replies: 1 comment
|
There is no API to use the IntelliSense features of the C++ extension. There is the API vscode-cpptools-api that allows build system extensions to provide IntelliSense configurations for consumers of Microsoft's C/C++ extension for VS Code. |
0 replies
Answer selected by
HO-COOH
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HO-COOH
There is no API to use the IntelliSense features of the C++ extension.
There is the API vscode-cpptools-api that allows build system extensions to provide IntelliSense configurations for consumers of Microsoft's C/C++ extension for VS Code.