diff options
author | Teddy Wing | 2019-06-17 20:01:52 +0200 |
---|---|---|
committer | Teddy Wing | 2019-06-17 20:01:52 +0200 |
commit | d3926970150f71904664a540493fe3a96eedb70d (patch) | |
tree | c9ff90b5b2239a1d7fcda43fd47c98258b7a98a8 /mouse.lua | |
parent | b28d76115d7ef315821f5d9cce67e8275cdfa169 (diff) | |
download | dothammerspoon-d3926970150f71904664a540493fe3a96eedb70d.tar.bz2 |
mouse: Remove Ctrl-Option-Shift-m mode hotkey
Changed this to 'padclear', and the way the code is written, we can't
have two shortcuts to activate & deactivate the mode. Just keep one.
Diffstat (limited to 'mouse.lua')
-rw-r--r-- | mouse.lua | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -101,11 +101,6 @@ function mouse.top_right(amount) end -mouse_mode = hs.hotkey.modal.new({'ctrl', 'option', 'shift'}, 'm', 'Mouse') -mouse_mode:bind({'ctrl', 'option', 'shift'}, 'm', 'Mouse Off', function() - mouse_mode:exit() -end) - mouse_mode = hs.hotkey.modal.new({}, 'padclear', 'Mouse') mouse_mode:bind({}, 'padclear', 'Mouse Off', function() mouse_mode:exit() |