-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adopt alternative impl for mapping caps lock to ctrl/esc
With this implementation, we need way less code than what was previously used in `better-caps-lock.lua`, and we won't need all these manual mappings anymore: https://github.com/jasonrudolph/keyboard/blob/7e12648/hammerspoon/better-caps-lock.lua#L48-L88 Shout out to @arbelt and @jasoncodes for this implementation: - https://gist.github.com/arbelt/b91e1f38a0880afb316dd5b5732759f1 - https://github.com/jasoncodes/dotfiles/blob/ac9f3ac/hammerspoon/control_escape.lua 🍻
- Loading branch information
1 parent
e09a40e
commit 01a7a5b
Showing
3 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
-- Credit for this implementation goes to @arbelt and @jasoncodes 🙇⚡️😻 | ||
-- | ||
-- https://gist.github.com/arbelt/b91e1f38a0880afb316dd5b5732759f1 | ||
-- https://github.com/jasoncodes/dotfiles/blob/ac9f3ac/hammerspoon/control_escape.lua | ||
|
||
send_escape = false | ||
last_mods = {} | ||
|
||
control_key_handler = function() | ||
send_escape = false | ||
end | ||
|
||
control_key_timer = hs.timer.delayed.new(0.15, control_key_handler) | ||
|
||
control_handler = function(evt) | ||
local new_mods = evt:getFlags() | ||
if last_mods["ctrl"] == new_mods["ctrl"] then | ||
return false | ||
end | ||
if not last_mods["ctrl"] then | ||
last_mods = new_mods | ||
send_escape = true | ||
control_key_timer:start() | ||
else | ||
if send_escape then | ||
hs.eventtap.keyStroke({}, "ESCAPE") | ||
end | ||
last_mods = new_mods | ||
control_key_timer:stop() | ||
end | ||
return false | ||
end | ||
|
||
control_tap = hs.eventtap.new({hs.eventtap.event.types.flagsChanged}, control_handler) | ||
control_tap:start() | ||
|
||
other_handler = function(evt) | ||
send_escape = false | ||
return false | ||
end | ||
|
||
other_tap = hs.eventtap.new({hs.eventtap.event.types.keyDown}, other_handler) | ||
other_tap:start() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters