diff options
| author | Teddy Wing | 2019-06-15 20:32:47 +0200 |
|---|---|---|
| committer | Teddy Wing | 2019-06-15 20:31:44 +0200 |
| commit | ee42af44419692096b2be7dd703a22c3a6fd54a3 (patch) | |
| tree | 46d12b5888779271c9eee3799a9039847d0debee | |
| parent | 0ec15de711e01b1686bcdb7209bdc8b5af0e4837 (diff) | |
| download | WindowMode.spoon-ee42af44419692096b2be7dd703a22c3a6fd54a3.tar.bz2 | |
window: Remove 'shift' from mode modifiers
Reduce the number of modifiers needed to activate the mode. Makes it a
bit easier on the fingers. Didn't go with Ctrl-Shift because I thought
it might be easier to accidentally activate with Vim window shortcuts.
| -rw-r--r-- | window.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -123,8 +123,8 @@ function window.move_to_top() end -window_mode = hs.hotkey.modal.new({'ctrl', 'option', 'shift'}, 'w', 'Window') -window_mode:bind({'ctrl', 'option', 'shift'}, 'w', 'Window Off', function() +window_mode = hs.hotkey.modal.new({'ctrl', 'option'}, 'w', 'Window') +window_mode:bind({'ctrl', 'option'}, 'w', 'Window Off', function() window_mode:exit() end) |
