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
We use document links in our language server to link statements in our program to external files.
These statements are linked to files according to a configuration file. The configuration file specifies the directories to search, so when the configuration file is modified, we want the document links to be updated.
After the configuration file is modified, the client sends a textDocument/documentLink request and receives a response back from the server. The response is correct and includes the new ranges, but these document links are not displayed in the file.
(I've tried to include the column/line number to show that the document links are not present at the ranges).
I notice that after I make an edit to the program (such as adding a space or deleting a character/undoing the deletion), the document links appear. But I do not understand why they are not appearing in the editor after the response is received.
The text was updated successfully, but these errors were encountered:
We use document links in our language server to link statements in our program to external files.
These statements are linked to files according to a configuration file. The configuration file specifies the directories to search, so when the configuration file is modified, we want the document links to be updated.
After the configuration file is modified, the client sends a
(I've tried to include the column/line number to show that the document links are not present at the ranges).textDocument/documentLink
request and receives a response back from the server. The response is correct and includes the new ranges, but these document links are not displayed in the file.I notice that after I make an edit to the program (such as adding a space or deleting a character/undoing the deletion), the document links appear. But I do not understand why they are not appearing in the editor after the response is received.
The text was updated successfully, but these errors were encountered: