From 9dfb9b8502131e4c589a420dc450f8a4123cac99 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Thu, 7 Sep 2023 10:53:23 +0200 Subject: [PATCH] swap next and last tab --- lua/plex/config/keymaps.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/plex/config/keymaps.lua b/lua/plex/config/keymaps.lua index ef505a2..ff52352 100644 --- a/lua/plex/config/keymaps.lua +++ b/lua/plex/config/keymaps.lua @@ -229,8 +229,8 @@ map('n', 'uw', function() end, { desc = 'Toggle Wrap' }) -- Tabs: Many ways to navigate them -map('n', '', 'tabnext', { desc = 'Next Tab' }) -map('n', '', 'tabprevious', { desc = 'Previous Tab' }) +map('n', '', 'tabprevious', { desc = 'Previous Tab' }) +map('n', '', 'tabnext', { desc = 'Next Tab' }) -- New and Close map('n', '', 'tabnew', { desc = 'New Tab' })