Add explorer.exe tab move left/right mappings

This commit is contained in:
Kenneth Benzie 2024-12-24 14:17:35 +00:00
parent 06e029c28c
commit f497175429

View File

@ -181,6 +181,8 @@ return
$!+[:: ; go one tab left
if WinActive("ahk_group Browser") || WinActive("ahk_exe wezterm-gui.exe")
send ^{PgUp}
else if WinActive("ahk_exe explorer.exe")
send ^+{Tab}
else
send !+[
return
@ -188,6 +190,8 @@ return
$!+]:: ; go one tab right
if WinActive("ahk_group Browser") || WinActive("ahk_exe wezterm-gui.exe")
send ^{PgDn}
else if WinActive("ahk_exe explorer.exe")
send ^{Tab}
else
send !+]
return