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?
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
didChangenotifications to modify the text references in different files, but it won't be able to track new changes done in that file since thetextDocumentkey is now changed. I'm not an LSP expert, but given the file was opened in IntelliJ, shouldn't this trigger adidCloseon the old file name, and adidOpenon the new one?