Fixes for Cmd+Shift+Left/Right shortcut

This commit is contained in:
RedBearAK
2021-12-25 23:19:08 -09:00
committed by GitHub
parent 75dbe611b3
commit f858ae9614

View File

@@ -283,6 +283,8 @@ define_keymap(re.compile("dde-file-manager", re.IGNORECASE),{
K("RC-Up"): K("RC-Up"), # Go Up dir 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-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-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") },"Overrides for DDE File Manager - Finder Mods")
# Keybindings overrides for Dolphin # 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-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-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-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-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-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 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-Left_Brace"): K("M-Left"), # Go Back
K("RC-Right_Brace"): K("M-Right"), # Go Forward 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-Left"): K("M-Left"), # Go Back
K("RC-Right"): K("M-Right"), # Go Forward K("RC-Right"): K("M-Right"), # Go Forward
K("RC-Up"): K("M-Up"), # Go Up dir 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-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-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-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 ### ### Open in New Window | Move to Trash | Duplicate file/folder ###
########################################################################################################### ###########################################################################################################