Compare commits

..

No commits in common. "d8983796e92224fe7c9020ef2ce011a05c9a8e62" and "11c5aecb3adc0195642ad35f89c04798f26a9076" have entirely different histories.

View file

@ -2,12 +2,7 @@ return {
"github/copilot.vim",
lazy = false,
config = function()
vim.api.nvim_set_keymap(
"i",
"<C-Tab>",
'copilot#Accept("\\<CR>")',
{ silent = true, script = true, expr = true, replace_keycodes = false }
)
vim.api.nvim_set_keymap("i", "<C-Tab>", 'copilot#Accept("<End>")', { silent = true, script = true, expr = true })
vim.g.copilot_no_tab_map = true
vim.g.copilot_assume_mapped = true
end,