pass ctrl-t through when terminal is focused
This commit is contained in:
parent
dfd012c274
commit
661a6bcd96
1 changed files with 8 additions and 1 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Reference in a new issue