diff --git a/config/nvim/lua/keymaps.lua b/config/nvim/lua/keymaps.lua index f838846..1238c7a 100644 --- a/config/nvim/lua/keymaps.lua +++ b/config/nvim/lua/keymaps.lua @@ -92,6 +92,7 @@ n('', ':nohlsearch', { desc = 'Clear Search Highlighting' }) -- Buffer operations -- Mappings for buffer management operations like switching, deleting, etc. -- Convention: All mappings start with 'b' followed by the operation +nld('ba', ':%bd|e#|bd#', 'Close all except current') nld('bd', ':lua MiniBufremove.delete()', 'Delete') nld('bh', ':bprev', 'Prev') nld('bj', ':bfirst', 'First')