I've implemented my own language server (based on the lsp-sample in the visual studio sample extensions git tree). It does basic language parsing ..etc.
I would like to provide some simple functions in the client side of my extension, that need access to data that is already parsed in the server portion of my extension.
how do I add my own calls to the client/server so I can ask my server for stuff ?
I'm looking to send commands/calls from the client side, to the server side and get an answer back.
I looked around and there is a LanguageClient.registerFeature() is that part of the answer ?
Any help would be greatly appreciated. Especially with sample code.
cdturner