make some mapping keybinds lowercased (#1897)

This commit is contained in:
siduck 2023-04-05 22:07:36 +05:30
parent 3479853e69
commit 907b112514
1 changed files with 2 additions and 2 deletions

View File

@ -70,14 +70,14 @@ M.tabufline = {
n = { n = {
-- cycle through buffers -- cycle through buffers
["<TAB>"] = { ["<tab>"] = {
function() function()
require("nvchad_ui.tabufline").tabuflineNext() require("nvchad_ui.tabufline").tabuflineNext()
end, end,
"goto next buffer", "goto next buffer",
}, },
["<S-Tab>"] = { ["<S-tab>"] = {
function() function()
require("nvchad_ui.tabufline").tabuflinePrev() require("nvchad_ui.tabufline").tabuflinePrev()
end, end,