You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The return type from pyls for a textDocument/hover request is a MarkedString[]. Usually this returns a list of 2 marked strings. The first MarkedString has the form {"language": "python", "value": "some content"}. The second MarkedString is a string.
The LSP spec states that clients should interpret MarkedString strings as markdown. This results in the docblocks being rendered odd for different requests. Here are some examples:
The solution is to update textDocument/hover by making it return plaintext instead of markdown. Since Python has diverse doc-styles it's somewhat hard to translate docs to markdown, so let's just do plaintext for now.
The text was updated successfully, but these errors were encountered:
python-language-server sends a list of MarkedStrings containing
the signature as python code-block and the doc string as string.
palantir/python-language-server#836
There are a few python docstyles out in the wild. See: https://stackoverflow.com/a/24385103. Most notably, none of these are markdown.
The return type from pyls for a textDocument/hover request is a
MarkedString[]
. Usually this returns a list of 2 marked strings. The firstMarkedString
has the form{"language": "python", "value": "some content"}
. The secondMarkedString
is a string.The LSP spec states that clients should interpret
MarkedString
strings as markdown. This results in the docblocks being rendered odd for different requests. Here are some examples:textDocument/hover rendering markdown: (never mind the added text, it's incorrect)
https://cdn.discordapp.com/attachments/645268178397560865/738774901837660210/Snipaste_2020-07-31_23-05-05.png
textDocument/signatureHelp rendering plaintext: (this is correct rendering)
https://cdn.discordapp.com/attachments/645268178397560865/738774912193265785/Snipaste_2020-07-31_23-03-44.png
textDocument/complete rendering plaintext: (this is correct rendering)
https://cdn.discordapp.com/attachments/645268178397560865/738774915062169621/Snipaste_2020-07-31_23-06-57.png
The solution is to update textDocument/hover by making it return plaintext instead of markdown. Since Python has diverse doc-styles it's somewhat hard to translate docs to markdown, so let's just do plaintext for now.
The text was updated successfully, but these errors were encountered: