mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 19:26:27 +00:00
Disable copilot for some files
This commit is contained in:
parent
90fe86fcc5
commit
e2c10e5f3b
@ -1,20 +1,30 @@
|
|||||||
local utils = require("utils")
|
local utils = require("utils")
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
-- Accept copilot suggestion
|
||||||
function M.copilot_accept()
|
function M.copilot_accept()
|
||||||
local suggest = vim.fn["copilot#GetDisplayedSuggestion"]()
|
local suggest = vim.fn["copilot#GetDisplayedSuggestion"]()
|
||||||
if next(suggest.item) ~= nil then
|
if next(suggest.item) ~= nil then
|
||||||
print("accept cp")
|
|
||||||
return vim.fn["copilot#Accept"]("\\<CR>")
|
return vim.fn["copilot#Accept"]("\\<CR>")
|
||||||
else
|
else
|
||||||
return utils.t("<Right>")
|
return utils.t("<Right>")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
M.setup = function()
|
function M.setup()
|
||||||
|
-- Replace keymap for copilot to accept with <C-F> and <Right>, similar to fish shell
|
||||||
vim.g.copilot_no_tab_map = false
|
vim.g.copilot_no_tab_map = false
|
||||||
utils.keymap_set("i", "<C-F>", M.copilot_accept, { expr = true, replace_keycodes = false, noremap = true })
|
utils.keymap_set("i", "<C-F>", M.copilot_accept, { expr = true, replace_keycodes = false, noremap = true })
|
||||||
utils.keymap_set("i", "<Right>", M.copilot_accept, { expr = true, replace_keycodes = false, noremap = true })
|
utils.keymap_set("i", "<Right>", M.copilot_accept, { expr = true, replace_keycodes = false, noremap = true })
|
||||||
|
|
||||||
|
-- Create autocmd to disable copilot for certain filetypes that may contain sensitive information
|
||||||
|
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
||||||
|
pattern = { ".env*", "*secret*", "*API_KEY*", "*TOKEN*" },
|
||||||
|
command = "let b:copilot_enabled = 0",
|
||||||
|
group = vim.api.nvim_create_augroup("CopilotDisable", {
|
||||||
|
clear = true,
|
||||||
|
}),
|
||||||
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
M.setup()
|
M.setup()
|
||||||
|
Loading…
Reference in New Issue
Block a user