1
1
mirror of https://github.com/codota/TabNine.git synced 2024-08-16 21:40:23 +03:00

Merge pull request #163 from Shougo/clangd

Fix #161 use clangd instead
This commit is contained in:
amircodota 2020-01-08 10:43:52 +02:00 committed by GitHub
commit 5e32ec7497
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,9 +29,13 @@ install = [["npm", "install", "-g", "ocaml-language-server"]]
command = "pyls"
install = [["pip", "install", "python-language-server"]]
[language.c]
command = "clangd"
args = []
[language.cpp]
command = "cquery"
args = ["--init={\"cacheDirectory\": \"${project_root}/.cquery_cache\"}"]
command = "clangd"
args = []
[language.haskell]
command = "hie"