We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In the current implementation, the workspace directory for Eclipse JDTLS is generated using a random UUID for every invocation:
ws_dir = str(PurePath( MultilspySettings.get_language_server_directory(), "EclipseJDTLS", "workspaces", uuid.uuid4().hex, ) )
Two directories are created inside ws_dir:
data_dir = str(PurePath(ws_dir, "data_dir")) dtls_config_path = str(PurePath(ws_dir, "config_path"))
Shouldn't workspace directories be consistent across invocations for the same project?