[Win] Enable browser page navigation with Cmd+Braces/Brackets

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.
This commit is contained in:
RedBearAK
2022-04-16 16:22:55 -08:00
committed by GitHub
parent be0a6bb197
commit bed5f37ce3

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
; Page Navigation
^[::send !{Left} ; Go to prior page
^]::send !{Right} ; Go to next page
;Tab Navigation ;Tab Navigation
^+[::send ^{PgUp} ^+[::send ^{PgUp} ; Go to prior tab (left)
^+]::send ^{PgDn} ^+]::send ^{PgDn} ; Go to next tab (right)
^!Left::send ^{PgUp} ^!Left::send ^{PgUp} ; Go to prior tab (left)
^!Right::send ^{PgDn} ^!Right::send ^{PgDn} ; Go to next tab (right)
#Left::send ^{PgUp} #Left::send ^{PgUp} ; Go to prior tab (left)
#Right::send ^{PgDn} #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}