1
1
mirror of https://github.com/codota/TabNine.git synced 2024-09-11 18:05:28 +03:00

Fix #161 use clangd instead

This commit is contained in:
Shougo Matsushita 2019-09-27 07:33:02 +09:00
parent d9eb2a58a9
commit 402b38ec9b

View File

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