From 9680e81aa32907b001496c63be087637d1f92fd7 Mon Sep 17 00:00:00 2001 From: Matt Leong Date: Mon, 17 Jan 2022 14:34:41 -0800 Subject: [PATCH] feat: delete mappings for tabs and buffers --- lua/cosmic/core/mappings.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/cosmic/core/mappings.lua b/lua/cosmic/core/mappings.lua index afec7b5..e1eb957 100644 --- a/lua/cosmic/core/mappings.lua +++ b/lua/cosmic/core/mappings.lua @@ -21,10 +21,12 @@ map('n', 'cn', ':cnextzz') -- buffer navigation map('n', 'bp', ':bprev') map('n', 'bn', ':bnext') +map('n', 'bd', ':bdelete') -- tab navigation map('n', 'tp', ':tabprevious') map('n', 'tn', ':tabnext') +map('n', 'td', ':tabclose') -- resize with arrows map('n', '', ':resize -2')