-
Notifications
You must be signed in to change notification settings - Fork 273
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
Do not enclose plaintext in ``` on hover #1205
base: dev
Are you sure you want to change the base?
Conversation
When working with larger multiple plaintext outputs, enclosing each output in ``` hinders readability.
Which language server are you having trouble with because of this? I'm curious as to why they would use that variant of |
I'm using the Isabelle/VSCode backend of Isabelle, with a custom connector. The server include
As to why they're doing that: no idea. I could try to ask upstream though. |
This would be very helpful, so if you can do that that'd be great! |
I believe upstream does this since VSCode renders plaintext as normal text, and never really thought deeply about it. It sounds like a good idea to handle this the same way as VSCode though, what do you think? |
My only issue with this is that merging this opens the door to supporting all the other extravagant ways in which servers may be sending plain text. What I mean is, I don't think Let me know how you feel about maybe opening a PR/issue in the server instead, I think it would be the more correct solution. Keep this open until we get to a resolution though, I'm not discarding the idea just yet. Thank you! |
When working with larger multiple plaintext outputs, enclosing each output in ``` hinders readability.
versus
As far as I am aware, the only "fake" language in this way is "plaintext", every other language should be continued packed in ```. If this is not the case, we can adjust the condition of course.