From 402b38ec9b978c638dbdc5fb8ae6f940b05c85e7 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 27 Sep 2019 07:33:02 +0900 Subject: [PATCH] Fix #161 use clangd instead --- TabNine.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/TabNine.toml b/TabNine.toml index 5363b66..5114bf1 100644 --- a/TabNine.toml +++ b/TabNine.toml @@ -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"