🗑️ remove(nvim): toggle tabline keymap

This commit is contained in:
Sergio Laín 2024-12-13 23:41:01 +01:00
parent 91b3a853c0
commit 252936b115
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438

View file

@ -99,15 +99,6 @@ map("n", "<leader>uS", function()
end
end, { desc = "Toggle Statusline" })
-- Toggle tabline
map("n", "<leader>u<tab>", function()
if o.showtabline:get() == 0 then
o.showtabline = 2
else
o.showtabline = 0
end
end, { desc = "Toggle Tabline" })
-- Comment box
map("n", "]/", "/\\S\\zs\\s*╭<CR>zt", { desc = "Next Block Comment" })
map("n", "[/", "?\\S\\zs\\s*╭<CR>zt", { desc = "Prev Block Comment" })