swap next and last tab

This commit is contained in:
Christoph J. Scherr 2023-09-07 10:53:23 +02:00
parent 3284a97a1e
commit 9dfb9b8502
1 changed files with 2 additions and 2 deletions

View File

@ -229,8 +229,8 @@ map('n', '<Leader>uw', function()
end, { desc = 'Toggle Wrap' })
-- Tabs: Many ways to navigate them
map('n', '<A-j>', '<cmd>tabnext<CR>', { desc = 'Next Tab' })
map('n', '<A-k>', '<cmd>tabprevious<CR>', { desc = 'Previous Tab' })
map('n', '<A-j>', '<cmd>tabprevious<CR>', { desc = 'Previous Tab' })
map('n', '<A-k>', '<cmd>tabnext<CR>', { desc = 'Next Tab' })
-- New and Close
map('n', '<A-t>', '<cmd>tabnew<CR>', { desc = 'New Tab' })