Maxattax97 / coc-ccls

CCLS (C/C++) extension for coc.nvim
https://github.com/neoclide/coc.nvim
25 stars 3 forks source link
c coc cplusplus lsp neovim vscode

coc-ccls

This is the coc.nvim extension for ccls.

This extension is still in pre-release development and is not ready for use. Track progress in this issue thread.

For the meantime, the following configuration for coc.nvim works very nicely for CCLS (copied from the coc.nvim wiki):

  "languageserver": {
    "ccls": {
      "command": "ccls",
      "filetypes": ["c", "cpp", "objc", "objcpp"],
      "rootPatterns": [".ccls", "compile_commands.json", ".vim/", ".git/", ".hg/"],
      "initializationOptions": {
         "cache": {
           "directory": "/tmp/ccls"
         }
       }
    }
  }

The original vscode-ccls project is fairly limited and offers few benefits over the above configuration at the time of writing.

Goals for this project include:

See: