Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for cl-lsp #1767

Closed
FerrisWasTaken opened this issue Mar 10, 2022 · 2 comments
Closed

Add support for cl-lsp #1767

FerrisWasTaken opened this issue Mar 10, 2022 · 2 comments
Labels
enhancement New feature or request

Comments

@FerrisWasTaken
Copy link

FerrisWasTaken commented Mar 10, 2022

Language server

cl-lsp

Requested feature

Add support for cl-lsp.

Other clients which have this feature

vim-lsp

@FerrisWasTaken FerrisWasTaken added the enhancement New feature or request label Mar 10, 2022
@mjlbach
Copy link
Contributor

mjlbach commented Apr 17, 2022

This server hasn't seen an update in over a year, I'd rather not add servers to lspconfig that are not actively developed. Furthermore I tested this and the server will not initialize, as it's not actively developed (so this is unlikely to be fixed), I'm going to close.

If it did work, here is how you would add it to your neovim configuration.

 local configs = require 'lspconfig.configs'

 -- Check if the config is already defined (useful when reloading this file)
 if not configs.cl_lsp then
   configs.cl_lsp = {
     default_config = {
       cmd = { vim.env.HOME .. "/.roswell/bin/cl-lsp"},
       filetypes = {'lisp'},
       root_dir = lspconfig.util.find_git_ancestor,
       settings = {},
     },
   }
 end

require('lspconfig').cl_lsp.setup {}

@glyh
Copy link

glyh commented Jun 17, 2023

Hello, the above customizing setup code is not working as well, is there a way for me to workaround it? Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants