From 6cdedf41e3c4bef267cdebd4267352a452ce020e Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Fri, 24 Dec 2021 23:19:19 -0900 Subject: [PATCH] Add Cmd+Shift+Left/Right for tab nav, fix typos Adding in Cmd+Shift+Left/Right to match another macOS Finder shortcut that works for tab navigation. This is unfortunately different from the web browser shortcut of Cmd+Option+Left/Right for tab nav. --- linux/kinto.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/kinto.py b/linux/kinto.py index 4c33dc6..d41490e 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -390,8 +390,8 @@ define_keymap(re.compile(filemanagerStr, re.IGNORECASE),{ ########################################################################################################### ### Navigation ### ########################################################################################################### - K("RC-Left_Brace"): K("M-Left"), # Go to prior tab - K("RC-Right_Brace"): K("M-Right"), # Go to next tab + K("RC-Left_Brace"): K("M-Left"), # Go Back + K("RC-Right_Brace"): K("M-Right"), # Go Forward K("RC-Left"): K("M-Left"), # Go Back K("RC-Right"): K("M-Right"), # Go Forward K("RC-Up"): K("M-Up"), # Go Up dir