From 45b2c4b6f7f0b1dbaef8fba720042919c7b471e6 Mon Sep 17 00:00:00 2001 From: monkoose Date: Mon, 9 Sep 2024 18:13:45 +0300 Subject: [PATCH] Downgrade server binary version to v1.14.12 Seems like higher versions have some problems to connect to the chat with and error "E0909 18:12:42.996797 81468 interceptor.go:49] /exa.language_server_pb.LanguageServerService/AddTrackedWorkspace: file:///path/to/root/dir is hidden: ignore uri\n" For some reason it detect any workspace root dir as hidden. Also binary vesrions v.1.16+ break autocompletion too. --- lua/neocodeium/binary.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/neocodeium/binary.lua b/lua/neocodeium/binary.lua index 91e6db3..4d08840 100644 --- a/lua/neocodeium/binary.lua +++ b/lua/neocodeium/binary.lua @@ -15,7 +15,7 @@ local fn = vim.fn ---@field path filepath ---@field suffix? string ---@field sha? string -local Bin = { version = "1.14.15" } +local Bin = { version = "1.14.12" } -- Auxiliary functions ------------------------------------- {{{1