Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add chrome and finder shortcut #838

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions linux/kinto.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,8 @@
define_keymap(re.compile("^thunar$", re.IGNORECASE),{
K("RC-Super-o"): K("RC-Shift-P"), # Open in new tab
K("RC-comma"): [K("Alt-E"),K("E")], # Overrides "Open preferences dialog" shortcut below
K("C-Shift-DOT"): K("LC-H"), # Show/Hide Hidden Files
K("C-M-Backspace"): K("Shift-Delete"), # Delete Files Permanently
},"Overrides for Thunar - Finder Mods")

filemanagers = [
Expand Down Expand Up @@ -460,6 +462,9 @@
# K("RC-Right"): K("Alt-Right"), # Page nav: Forward to next page in history (conflict with wordwise)
K("RC-Left_Brace"): K("Alt-Left"), # Page nav: Back to prior page in history
K("RC-Right_Brace"): K("Alt-Right"), # Page nav: Forward to next page in history
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
}, "Chrome Browsers")
# Opera C-F12

Expand Down
8 changes: 8 additions & 0 deletions windows/kinto.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ GroupAdd, intellij, ahk_exe idea64.exe
^Left::Send !{Left} ; Cmd+Left: Go to prior location in history
^Right::Send !{Right} ; Cmd+Right: Go to next location in history
^Down:: ; Cmd-Down: Navigate into the selected directory
^+.::send {Alt Down}vhh{Alt Up} ; Show/Hide Hidden Files
$^!Backspace::send {LShift down}{Delete}{LShift up} ; Delete Files Permanently
For window in ComObjCreate("Shell.Application").Windows
If WinActive() = window.hwnd
For item in window.document.SelectedItems {
Expand Down Expand Up @@ -630,6 +632,12 @@ GroupAdd, intellij, ahk_exe idea64.exe
#If
#IfWinActive ahk_exe chrome.exe
^,::send {Alt Down}e{Alt Up}s{Enter}
; Browser History
^y::send {Ctrl Down}h{Ctrl Up}
; View Page Source
!^u::send {Ctrl Down}u{Ctrl Up}
; Downloads
!^l::send {Ctrl Down}j{Ctrl Up}
#If
#IfWinActive ahk_exe msedge.exe
^,::send {Alt Down}e{Alt Up}s{Enter}
Expand Down