Hi
So I recently discovered that Lucee received an LSP (Language Server Protocol (LSP) for Lucee :: Lucee Documentation). So I setup a docker container to use the LSP in Nvim.
However the default component does not seem to be present in the lucee docker images (docker.io/lucee/lucee:6.2.0.312) and my question is if i’m using the wrong image or if I have to add my own component?
lucee-lsp_server.logs (7.8 KB)
Edit:
I thought I’d add my vim.lsp
config in case someone wants that:
vim.lsp.config['lucee'] = {
cmd = vim.lsp.rpc.connect('10.88.0.100', 2089),
filetypes = {'cfml', 'cf'},
single_file_support = true,
root_markers = {'Application.cfc'},
settings = {},
}