-
Is it possible to have overlapping keyboard shortcuts? I would like to have it set like this: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is a macOS limitation of sorts, where the keyboard shortcuts built into macOS are defined as modifiers + 1 key. In order to add this to Rectangle, its shortcut library would have to listen to keystrokes to know when these shortcuts are pressed, rather than relying on the built-in macOS solution. Currently, Rectangle uses my fork of an older objective-c library for keyboard shortcuts, and at some point I will replace this with my own Swift rewrite of that library. At that time I will consider adding in multiple key keyboard shortcuts or would be willing to accept a PR for it. |
Beta Was this translation helpful? Give feedback.
This is a macOS limitation of sorts, where the keyboard shortcuts built into macOS are defined as modifiers + 1 key. In order to add this to Rectangle, its shortcut library would have to listen to keystrokes to know when these shortcuts are pressed, rather than relying on the built-in macOS solution. Currently, Rectangle uses my fork of an older objective-c library for keyboard shortcuts, and at some point I will replace this with my own Swift rewrite of that library. At that time I will consider adding in multiple key keyboard shortcuts or would be willing to accept a PR for it.