adds autocommand to unbind enter key when in quickfix list

succesfully tested
This commit is contained in:
Dennis 2025-08-14 11:25:20 +02:00
parent 00ccb5c8fb
commit 6ee1ee7a0a

View file

@ -2,6 +2,14 @@ return {
"folke/flash.nvim",
event = "VeryLazy",
opts = {},
config = function()
vim.api.nvim_create_autocmd("BufReadPost", {
pattern = "quickfix",
callback = function()
vim.keymap.set("n", "<CR>", "<CR>", { buffer = true })
end,
})
end,
keys = {
{
"<CR>",