Skip to content

Commit

Permalink
[Win] Enable browser page navigation with Cmd+Braces/Brackets
Browse files Browse the repository at this point in the history
This just enables the Cmd+Braces (brackets?) page navigation for Windows web browsers. And adds some comments on the tab navigation lines. 

Only the page navigation lines are actually new.
  • Loading branch information
RedBearAK authored Apr 17, 2022
1 parent be0a6bb commit bed5f37
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions windows/kinto.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -552,13 +552,16 @@ GroupAdd, intellij, ahk_exe idea64.exe

; Close all browsers
#IfWinActive ahk_group browsers
;Tab Navigation
^+[::send ^{PgUp}
^+]::send ^{PgDn}
^!Left::send ^{PgUp}
^!Right::send ^{PgDn}
#Left::send ^{PgUp}
#Right::send ^{PgDn}
; Page Navigation
^[::send !{Left} ; Go to prior page
^]::send !{Right} ; Go to next page
;Tab Navigation
^+[::send ^{PgUp} ; Go to prior tab (left)
^+]::send ^{PgDn} ; Go to next tab (right)
^!Left::send ^{PgUp} ; Go to prior tab (left)
^!Right::send ^{PgDn} ; Go to next tab (right)
#Left::send ^{PgUp} ; Go to prior tab (left)
#Right::send ^{PgDn} ; Go to next tab (right)
^q::send {Alt Down}f{Alt Up}x ; exit all windows
; Dev Tools
!^i::send {Ctrl Down}{Shift Down}i{Shift Up}{Ctrl Up}
Expand Down Expand Up @@ -882,4 +885,4 @@ return
else
Send, %UserInput%
return
#If
#If

0 comments on commit bed5f37

Please sign in to comment.