Merge pull request #649 from RedBearAK/patch-44

[Win] Enable browser page navigation with Cmd+Braces/Brackets
This commit is contained in:
Ben Reaves
2022-05-05 08:21:12 -05:00
committed by GitHub

View File

@@ -552,13 +552,16 @@ GroupAdd, intellij, ahk_exe idea64.exe
; Close all browsers ; Close all browsers
#IfWinActive ahk_group browsers #IfWinActive ahk_group browsers
;Tab Navigation ; Page Navigation
^+[::send ^{PgUp} ^[::send !{Left} ; Go to prior page
^+]::send ^{PgDn} ^]::send !{Right} ; Go to next page
^!Left::send ^{PgUp} ;Tab Navigation
^!Right::send ^{PgDn} ^+[::send ^{PgUp} ; Go to prior tab (left)
#Left::send ^{PgUp} ^+]::send ^{PgDn} ; Go to next tab (right)
#Right::send ^{PgDn} ^!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 ^q::send {Alt Down}f{Alt Up}x ; exit all windows
; Dev Tools ; Dev Tools
!^i::send {Ctrl Down}{Shift Down}i{Shift Up}{Ctrl Up} !^i::send {Ctrl Down}{Shift Down}i{Shift Up}{Ctrl Up}
@@ -882,4 +885,4 @@ return
else else
Send, %UserInput% Send, %UserInput%
return return
#If #If