From f858ae9614383c0b10166a6f0cc4098bc495633b Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Sat, 25 Dec 2021 23:19:08 -0900 Subject: [PATCH] Fixes for Cmd+Shift+Left/Right shortcut --- linux/kinto.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/linux/kinto.py b/linux/kinto.py index 0da19d1..d41a200 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -281,8 +281,10 @@ define_keymap(re.compile("dde-file-manager", re.IGNORECASE),{ K("RC-i"): K("RC-i"), # File properties dialog (Get Info) K("RC-comma"): None, # Disable preferences shortcut (no shortcut available) K("RC-Up"): K("RC-Up"), # Go Up dir - K("RC-Shift-Left_Brace"): K("C-Shift-Tab"), # Go to prior tab - K("RC-Shift-Right_Brace"): K("C-Tab"), # Go to next tab + K("RC-Shift-Left_Brace"): K("C-Shift-Tab"), # Go to prior tab + K("RC-Shift-Right_Brace"): K("C-Tab"), # Go to next tab + K("RC-Shift-Left"): K("C-Shift-Tab"), # Go to prior tab + K("RC-Shift-Right"): K("C-Tab"), # Go to next tab },"Overrides for DDE File Manager - Finder Mods") # Keybindings overrides for Dolphin @@ -336,6 +338,8 @@ define_keymap(re.compile("spacefm", re.IGNORECASE),{ K("RC-Page_Down"): K("C-Tab"), # Go to next tab K("RC-Shift-Left_Brace"): K("C-Shift-Tab"), # Go to prior tab K("RC-Shift-Right_Brace"): K("C-Tab"), # Go to next tab + K("RC-Shift-Left"): K("C-Shift-Tab"), # Go to prior tab + K("RC-Shift-Right"): K("C-Tab"), # Go to next tab K("RC-Shift-N"): K("RC-F"), # Create new folder is Ctrl+F by default K("RC-Backspace"): [K("Delete"),K("Enter")], # Move to Trash (delete, bypass dialog) K("RC-comma"): [K("M-V"),K("p")], # Overrides "Open preferences dialog" shortcut below @@ -392,8 +396,6 @@ define_keymap(re.compile(filemanagerStr, re.IGNORECASE),{ ########################################################################################################### K("RC-Left_Brace"): K("M-Left"), # Go Back K("RC-Right_Brace"): K("M-Right"), # Go Forward - K("RC-Shift-Left"): K("M-Left"), # Go Back - K("RC-Shift-Right"): 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 @@ -402,6 +404,8 @@ define_keymap(re.compile(filemanagerStr, re.IGNORECASE),{ K("RC-Down"): K("Enter"), # Go Down dir (open folder/file) [universal] K("RC-Shift-Left_Brace"): K("C-Page_Up"), # Go to prior tab K("RC-Shift-Right_Brace"): K("C-Page_Down"), # Go to next tab + K("RC-Shift-Left"): K("C-Page_Up"), # Go to prior tab + K("RC-Shift-Right"): K("C-Page_Down"), # Go to next tab ########################################################################################################### ### Open in New Window | Move to Trash | Duplicate file/folder ### ###########################################################################################################