mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-08 00:14:38 +02:00
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:
parent
76d33bba2c
commit
9fe89f5f8a
1 changed files with 2 additions and 2 deletions
|
@ -86,9 +86,9 @@ return {
|
||||||
local jdtls_cache_dir = vim.fn.stdpath("cache") .. "/jdtls/" .. project_name
|
local jdtls_cache_dir = vim.fn.stdpath("cache") .. "/jdtls/" .. project_name
|
||||||
vim.list_extend(cmd, {
|
vim.list_extend(cmd, {
|
||||||
"-configuration",
|
"-configuration",
|
||||||
vim.fs.joinpath(jdtls_cache_dir, "config"),
|
jdtls_cache_dir .. "/config",
|
||||||
"-data",
|
"-data",
|
||||||
vim.fs.joinpath(jdtls_cache_dir, "workspace"),
|
jdtls_cache_dir .. "/workspace",
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
local jdtls_base_config = {
|
local jdtls_base_config = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue