fix(copilot): re-enable copilot confirm with overwrite

This commit is contained in:
Folke Lemaitre
2023-04-21 23:41:41 +02:00
parent 2f93f69171
commit 40983a3269

View File

@ -76,7 +76,7 @@ return {
["<CR>"] = function(...)
local entry = cmp.get_selected_entry()
if entry and entry.source.name == "copilot" then
-- return confirm_copilot(...)
return confirm_copilot(...)
end
return confirm(...)
end,