Add explorer.exe to some bindings

This commit is contained in:
Kenneth Benzie 2022-09-09 23:09:33 +01:00
parent 8c18eba3f8
commit 0dadc1bf13

View File

@ -51,6 +51,8 @@ return
$!r:: ; reload
if WinActive("ahk_group Browser") || WinActive("ahk_group WebCatalog")
send ^r
else if WinActive("ahk_exe explorer.exe")
send {F5}
else
send !r
return
@ -59,7 +61,7 @@ return
$![:: ; back from Alt+[
$<^>![:: ; from AltGr+[
if WinActive("ahk_group Browser") || WinActive("ahk_group WebCatalog")
if WinActive("ahk_group Browser") || WinActive("ahk_group WebCatalog") || WinActive("ahk_exe explorer.exe")
send !{Left}
else
send ![
@ -67,7 +69,7 @@ return
$!]:: ; forward from Atl+]
$<^>!]:: ; from AltGr+]
if WinActive("ahk_group Browser") || WinActive("ahk_group WebCatalog")
if WinActive("ahk_group Browser") || WinActive("ahk_group WebCatalog") || WinActive("ahk_exe explorer.exe")
send !{Right}
else
send !]