pass ctrl-t through when terminal is focused

This commit is contained in:
zendesk-acicchetti 2022-03-01 13:27:26 -05:00
parent dfd012c274
commit 661a6bcd96

View file

@ -8,6 +8,8 @@ spoon.SpoonInstall:andUse("WindowScreenLeftAndRight")
spoon.SpoonInstall:andUse("WindowHalfsAndThirds")
spoon.SpoonInstall:andUse("Commander")
TERMINAL_NAME = "WezTerm"
spoon.WindowScreenLeftAndRight:bindHotkeys(spoon.WindowScreenLeftAndRight.defaultHotkeys)
spoon.WindowHalfsAndThirds:bindHotkeys(spoon.WindowHalfsAndThirds.defaultHotkeys)
@ -17,7 +19,12 @@ hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function ()
end)
hs.hotkey.bind({"ctrl"}, "t", function ()
hs.application.launchOrFocus("Wezterm")
local currentApp = hs.window.focusedWindow():application()
if (currentApp:name() == TERMINAL_NAME) then
hs.eventtap.keyStroke({"ctrl"}, "t", 1000, currentApp)
else
hs.application.launchOrFocus(TERMINAL_NAME)
end
end)
hs.hotkey.bind({"cmd", "alt"}, ",", function ()