Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/CopilotChat/completion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function M.complete(without_input)
if not without_input and vim.startswith(prefix, '#') and vim.endswith(prefix, ':') then
local found_tool = config.functions[prefix:sub(2, -2)]
local found_schema = found_tool and functions.parse_schema(found_tool)
if found_tool and found_schema then
if found_tool and found_schema and found_tool.uri then
async.run(function()
local value = functions.enter_input(found_schema, source)
if not value then
Expand Down
Loading