From f4971754290088446e184b6f1ed99c0d82943681 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Tue, 24 Dec 2024 14:17:35 +0000 Subject: [PATCH] Add explorer.exe tab move left/right mappings --- macOS.ahk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/macOS.ahk b/macOS.ahk index 8f64a85..fa550a7 100644 --- a/macOS.ahk +++ b/macOS.ahk @@ -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