diff --git a/linux/kinto.py b/linux/kinto.py index cbb5b86..2f68a7a 100755 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -317,6 +317,10 @@ define_keymap(re.compile("pcmanfm|pcmanfm-qt", re.IGNORECASE),{ # Keybindings overrides for SpaceFM # (overrides some bindings from general file manager code block below) define_keymap(re.compile("spacefm", re.IGNORECASE),{ + K("RC-Page_Up"): K("C-Shift-Tab"), # Go to prior 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-Right_Brace"): 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 @@ -377,6 +381,8 @@ define_keymap(re.compile(filemanagerStr, re.IGNORECASE),{ # K("RC-Down"): K("M-Down"), # Go Down dir (only works on folders) [not universal] # K("RC-Down"): K("RC-O"), # Go Down dir (open folder/file) [not 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-Right_Brace"): K("C-Page_Down"), # Go to next tab ########################################################################################################### ### Open in New Window | Move to Trash | Duplicate file/folder ### ###########################################################################################################