fix(lang_java): fixes #1215 other two entries of vim.fs.joinpath as well that were not changed in #1213 (#1216)

This commit is contained in:
Iordanis Petkakis 2023-07-25 20:22:10 +03:00 committed by GitHub
parent 76d33bba2c
commit 9fe89f5f8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,9 +86,9 @@ return {
local jdtls_cache_dir = vim.fn.stdpath("cache") .. "/jdtls/" .. project_name
vim.list_extend(cmd, {
"-configuration",
vim.fs.joinpath(jdtls_cache_dir, "config"),
jdtls_cache_dir .. "/config",
"-data",
vim.fs.joinpath(jdtls_cache_dir, "workspace"),
jdtls_cache_dir .. "/workspace",
})
end
local jdtls_base_config = {