Merge pull request 'copilot setting update' (#12) from copilot-setting-update into main
Reviewed-on: #12
This commit is contained in:
commit
d8983796e9
1 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,12 @@ return {
|
||||||
"github/copilot.vim",
|
"github/copilot.vim",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
config = function()
|
config = function()
|
||||||
vim.api.nvim_set_keymap("i", "<C-Tab>", 'copilot#Accept("<End>")', { silent = true, script = true, expr = true })
|
vim.api.nvim_set_keymap(
|
||||||
|
"i",
|
||||||
|
"<C-Tab>",
|
||||||
|
'copilot#Accept("\\<CR>")',
|
||||||
|
{ silent = true, script = true, expr = true, replace_keycodes = false }
|
||||||
|
)
|
||||||
vim.g.copilot_no_tab_map = true
|
vim.g.copilot_no_tab_map = true
|
||||||
vim.g.copilot_assume_mapped = true
|
vim.g.copilot_assume_mapped = true
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in a new issue