We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 184bf75 commit a9bf829Copy full SHA for a9bf829
1 file changed
lua/tabnine/binary.lua
@@ -50,6 +50,7 @@ local function binary_path()
50
51
local version = paths[#paths]
52
if not version then
53
+ vim.notify("Did you remember to run the build script for tabnine-nvim?", vim.log.levels.WARN)
54
return nil -- Is it installed?
55
end
56
local machine = arch_and_platform()
@@ -61,6 +62,7 @@ local function binary_path()
61
62
if vim.fn.filereadable(binary) then -- Double check that it's installed
63
return binary
64
else
65
66
return nil -- File doesn't exist or isn't readable. Is it installed?
67
68
0 commit comments