Ken Domino
Ken Domino
To boot, the "Build Output" window is empty after opening the .sln file. Completely unacceptable MS!
I've determined that one problem here is due to a design-time build occurring at the time of the opening of a .sln file (https://developercommunity.visualstudio.com/content/problem/449863/opening-a-project-performs-itaskexecute-i-dont-kno.html). The solution involves distinguishing between normal...
V1.0.14 fixes the build problem. It also likely fixes the problem noted elsewhere where it cannot write to a file because it is locked...due to multiple invocations of piggy builds....
Will consider span/slice. But, it's clear the AST is huge for a typical C++ file in NET Core. Generating the AST should be limited to the scope specified in a...
Thanks for the information. (1) Yes, it looks like the Antlr4 grammar--from the grammars-v4 Antlr4 repository!--is incorrect. Your grammar is accepted by the Antlr tool, but not with a parse...
Also check out https://stackoverflow.com/questions/61695169/repetitions-grammar-parsing-s-e/61699579#61699579, "idioms".
Looks like I need to create a custom editor. https://github.com/MicrosoftDocs/visualstudio-docs/blob/master/docs/extensibility/binding-keyboard-shortcuts-to-menu-items.md https://github.com/Microsoft/VSProjectSystem/issues/136 https://docs.microsoft.com/en-us/visualstudio/extensibility/walkthrough-creating-a-core-editor-and-registering-an-editor-file-type?view=vs-2015
The LSP spec says that the client can let the server know if multilineTokenSupport is available. I would have thought VSCode would support it, but apparently not.
This does not make any sense because using Trash, it takes less than a second to parse the file (and all dependencies).
Thanks for the info. Unfortunately, each major version of VS2019 (e.g., 16.6 vs 16.7) seems to require a different Language Server Protocol (LSP) client, which I didn't anticipate. Right now,...