-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update LSP to 0.11.x #1387
Update LSP to 0.11.x #1387
Conversation
as well as behave in a more deireable way (all diagnostics will be pushed as the server starts up, etc)
- This is due to bug in Bakery. See cake-build/bakery#111 for more information.
@@ -80,7 +80,7 @@ private void DebugAttach() | |||
{ | |||
if (Debug) | |||
{ | |||
Console.WriteLine($"Attach debugger to process {Process.GetCurrentProcess().Id} to continue..."); | |||
//Console.WriteLine($"Attach debugger to process {Process.GetCurrentProcess().Id} to continue..."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops.. This should not be here.
BTW, @david-driscoll, we need a way to get this working with LSP? Currently VSCode starts yelling at me when non-json-RPC formatted content arrives on STDOUT.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be fine with it commented for now... worst case we can always have someone uncomment it for debugging purposes, if they haven't figure out which pid they need.
I'll be getting back to this tomorrow, to figure out what is causing issues with ci. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM now that I fixed my failing tests
Ping @david-driscoll
There were still some issues with the Cake script service and incremental changes. I've disabled it for now and will enable once it works.