Eric Dallo
Eric Dallo
Odd, we do implement support for that notification [here ](https://github.com/emacs-lsp/lsp-mode/blob/master/lsp-mode.el#L6340), or do we need to handle a server request differently from a server notification @yyoncho ?
> At the same time token refresh is listed as a request, not notification: https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#semanticTokens_refreshRequest so I believe that the issue should be fixed on the server unless we somehow...
It may help providing the communication between server and client, you can achieve that following https://emacs-lsp.github.io/lsp-mode/page/troubleshooting/#log-client-server-json
It seems server is returning empty results for `{` which seems correct, @yyoncho any thoughts? Maybe completion cache?
Oh, I didn't realize it has a pub package that does the magic. I'm familiar with flutter debugging process as I needed to implement flutter daemon support on `lsp-dart` to...
I see that you await for the `preview.launch` notification then starts a custom dart debug process. So, I just need to spawn the pub package process then await for the...
I see, so when you spawn the debug process you don't need an emulator/device for that?
Yeah, that was what I was talking about, I thought that the preview process would need an emulator or something like that, but it just needs the package processes to...
Thank you for the report! It seems we are not registering correctly the debug flags for web development, I can take a look on this soon.