-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get Current Selection Service no longer works #2646
Comments
Same -- Oddly it still works fine in my stable build of QS -- even with the It looks like it's coming from Unfortunately after clearing it, when I try to re-insert Esc, it gives me a EDIT: This is me trying to re-input cmdEsc on a debug build: Works fine on stable, I can re-insert cmdEsc without issue. |
Good catch, this is likely an ndhotkey bug. I'll look into it. The only other change I can think of is the change in 6c5fae9 that jumbled up the plist, but the before and after look the same: |
27 is the MacOS keycode for escape: $ grep -i escape /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/Events.h
kEscapeCharCode = 27,
kVK_Escape = 0x35, In triggers.plist, the key code for command is:
and >>> int("b", 16)
11
>>> hex(11)
'0xb'
>>> hex(1048840)
'0x100108' My >>> hex(53)
'0x35' $ grep '35\b' /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/Events.h
kVK_Escape = 0x35, So using Esc as an example, QS is displaying octal format ( |
I didn't really need to do the
I think the fix should be easy - just use ⌘⎋ in the plist. |
Yep, just required changing the plist key code to Will submit a PR |
Describe the bug
I noticed ⌘⎋ wasn’t working. I checked the Services prefs and saw “033” instead of the expected shortcut. I wiped it and attempted to set it again, but the system doesn’t allow you to use ⎋ in shortcuts. (I don’t remember if it used to.)
Screenshots
What version of macOS?
12.2.1
What version of Quicksilver?
It’s complicated. 😂
The text was updated successfully, but these errors were encountered: