Conversation
|
I'm not the Kinto dev, just a minor contributor. I am the author of the "Finder Mods" keymaps for Linux file managers (and the stuff in the Windows version of Kinto focused on Windows Explorer). About the Linux shortcutsThe hidden files shortcut should already work in Thunar, I just tested it on Fedora 39. So this shortcut: K("C-Shift-DOT"): K("LC-H"), # Show/Hide Hidden FilesIndicates to me that you may be using the physical Ctrl key instead of the key next to your Space bar, which should work fine for this. Remember the goal of the config is to use the physical keys that would perform the same action in macOS. There is an existing shortcut that applies to all the file managers in the list, including Thunar. Notice that it uses "RC" instead of just "C" on the input side, so that it only applies to the key next to the Space bar. K("Shift-RC-dot"): K("RC-H"), # Show/hide hidden files ("dot" files)This one is probably good, but it should use "RC" instead of "C" (and "M" should be changed to "Alt"): K("C-M-Backspace"): K("Shift-Delete"), # Delete Files PermanentlyAnd I should probably look at setting a general file manager shortcut for that. I think I didn't bother because that's a potentially very dangerous shortcut (deleting things without sending to the trash). In this set of shortcuts, there are a couple of things to note: K("RC-Y"): K("RC-H"), # Browser History
K("M-RC-U"): K("RC-U"), # View Page Source
K("M-RC-L"): K("RC-J"), # Downloads
These seem good otherwise, if they are really the correct input shortcuts for Chrome(s) on macOS. And... No, one of them seems to be incorrect. The latest Chrome on a Big Sur machine I have uses Shift+Cmd+J for opening the browser's Downloads view. So that one should be: K("Shift-RC-J"): K("RC-J"), # DownloadsBut the others are correct, and missing from the default config. About the Windows shortcutsThis is an interesting one, and I wonder if it works the same way on Windows 10 and 11. Probably, but the Windows Explorer has been changing a lot lately. ^+.::send {Alt Down}vhh{Alt Up} ; Show/Hide Hidden FilesThis one, again, is a potentially very dangerous shortcut that could end up deleting entire folder structures without sending them to the trash, and I'm not sure it is wise to have it in the default config. But that will be up to the Kinto dev. $^!Backspace::send {LShift down}{Delete}{LShift up} ; Delete Files PermanentlySame note about this shortcut to open the Chrome Downloads view: !^l::send {Ctrl Down}j{Ctrl Up}Should be: +^j::send {Ctrl Down}j{Ctrl Up}Since the goal of Kinto is to use the current macOS shortcut for that function in the matching app on macOS. I don't know if that shortcut in macOS Chrome changed recently, or you might be thinking of the shortcut in Firefox. In which case, if Opt+Cmd+L is the shortcut in Safari on macOS, it could be allowable to set that as an alternate for "consistency" between browsers (like the Shift+Cmd+N remap for Firefox to open Private windows with the same shortcut as other macOS web browsers). But the correct shortcut specifically for Chrome on macOS (Shift+Cmd+J) should also be set independently. Thanks for submitting these, I'll have to add some of them to my own Kinto-based project (Toshy). |
No description provided.