eclipse-lsp4j / lsp4j

A Java implementation of the language server protocol intended to be consumed by tools and language servers implemented in Java.

Home Page:https://eclipse.org/lsp4j

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for workspace.fileOperatioms

asmodeus812 opened this issue · comments

Hi, i was looking through the implementation and noticed that most of the workspace file ops return unsupported exception. Is there a plan to add support for the willRename,Create,Delete ops ? Thanks !

Hi, these methods are intended to be implemented by specific language servers, not by LSP4J itself. They throw UOE by default because it is up to a language server to implement them or not; they are not required to be implemented by all language servers according to the spec.

Ah okay i seee, i will then make sure to ask in jdtls. Thanks i will close this one.