Add explorer.exe to some bindings
This commit is contained in:
parent
8c18eba3f8
commit
0dadc1bf13
@ -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 !]
|
||||
|
Loading…
x
Reference in New Issue
Block a user