We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eabfde9 commit eff4282Copy full SHA for eff4282
lua/vectorcode/integrations/codecompanion.lua
@@ -51,6 +51,10 @@ end
51
---@param opts VectorCode.CodeCompanion.ToolOpts?
52
---@return CodeCompanion.Agent.Tool
53
local make_tool = check_cli_wrap(function(opts)
54
+ local has = require("codecompanion").has
55
+ if has ~= nil and not has("xml-tools") then
56
+ error("VectorCode doesn't support the new tool format yet.")
57
+ end
58
if opts == nil or opts.use_lsp == nil then
59
opts = vim.tbl_deep_extend(
60
"force",
0 commit comments