From bed5f37ce3a3dfa769b90eda03abe55affb57a1b Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Sat, 16 Apr 2022 16:22:55 -0800 Subject: [PATCH] [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. --- windows/kinto.ahk | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/windows/kinto.ahk b/windows/kinto.ahk index 46804030..e4b9d022 100644 --- a/windows/kinto.ahk +++ b/windows/kinto.ahk @@ -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} @@ -882,4 +885,4 @@ return else Send, %UserInput% return -#If \ No newline at end of file +#If