Add AltGr+[ and AltGr+] for back/forward

This commit is contained in:
Kenneth Benzie 2022-04-27 17:58:08 +01:00
parent 83628bebe7
commit 8fb1d28e3a

View File

@ -44,14 +44,16 @@ return
; -------------------------------- Navigation -------------------------------- ; -------------------------------- Navigation --------------------------------
$![:: ; back $![:: ; back from Alt+[
$<^>![:: ; from AltGr+[
if WinActive("Firefox") || WinActive("Personal") if WinActive("Firefox") || WinActive("Personal")
send !{Left} send !{Left}
else else
send ![ send ![
return return
$!]:: ; forward $!]:: ; forward from Atl+]
$<^>!]:: ; from AltGr+]
if WinActive("Firefox") || WinActive("Personal") if WinActive("Firefox") || WinActive("Personal")
send !{Right} send !{Right}
else else