fix ultra annoying workspace close on <A-c>

This commit is contained in:
Christoph J. Scherr 2024-08-03 18:26:07 +02:00
parent 38fb445fb1
commit 9fed026ab7
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next [D]iagn
-- let me out!!!
vim.keymap.set({ 'n', 'v' }, 'qqq', '<cmd>bd!<cr>', { desc = '[Q]uit the current window' })
vim.keymap.set({ 'n', 'v' }, '<A-c>', '<cmd>bw!<cr>', { desc = '[Q]uit the current window' })
vim.keymap.set({ 'n', 'v' }, '<A-c>', '<cmd>bd!<cr>', { desc = '[Q]uit the current window' })
vim.keymap.set({ 'n' }, '#', "'", { desc = '[Q]uit the current window' })