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
I'm not entirely sure, but it doesn't seem like lsp4intellij appropriately handles the case where someone renames a class which has an associated file name.
It seems to send the didChange notifications to modify the text references in different files, but it won't be able to track new changes done in that file since the textDocument key is now changed. I'm not an LSP expert, but given the file was opened in IntelliJ, shouldn't this trigger a didClose on the old file name, and a didOpen on the new one?
The text was updated successfully, but these errors were encountered:
I'm not entirely sure, but it doesn't seem like lsp4intellij appropriately handles the case where someone renames a class which has an associated file name.
It seems to send the
didChange
notifications to modify the text references in different files, but it won't be able to track new changes done in that file since thetextDocument
key is now changed. I'm not an LSP expert, but given the file was opened in IntelliJ, shouldn't this trigger adidClose
on the old file name, and adidOpen
on the new one?The text was updated successfully, but these errors were encountered: