Coc.nvim language servers

From wikinotes
Revision as of 15:21, 28 December 2021 by Will (talk | contribs) (→‎Extensions)

Language Servers

Extensions

Language Servers may have a wrapper built for COC. These are called extensions.

You may install them dynamically with :CocInstall coc-python
and sometimes automatically like Plug 'neoclide/coc-tsserver', {'do': 'yarn install --frozen-lockfile'}.

python
unmaintained coc-python
active coc-pyright
sh, bash
active coc-sh
ruby
active, ruby/rails coc-solargraph
graphql
active coc-graphql

Custom

Some programs may be able to function as an LSP, and can be registered to do so.
see https://github.com/neoclide/coc.nvim/wiki/Language-servers#register-custom-language-servers

{
   "languageserver": {
      "sorbet": {
        "command": "srb",
        "args": ["tc", "--lsp"],
        "filetypes": ["ruby"]
      }
   }
}