Skip to content
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

option+V to open maccy doesnt work since 2.0 #872

Closed
2 tasks done
avichou opened this issue Sep 17, 2024 · 8 comments
Closed
2 tasks done

option+V to open maccy doesnt work since 2.0 #872

avichou opened this issue Sep 17, 2024 · 8 comments
Labels
bug Something isn't working

Comments

@avichou
Copy link

avichou commented Sep 17, 2024

Before Submitting Your Bug Report

  • I have verified that there isn't already an issue reporting the same bug to prevent duplication.
  • I have seen the FAQ.

Maccy Version (see 'About' window)

2.0

macOS Version

15.0

Maccy Settings

{
    "KeyboardShortcuts_delete" = "{\\"carbonModifiers\\":2048,\\"carbonKeyCode\\":51}";
    "KeyboardShortcuts_pin" = "{\\"carbonModifiers\\":2048,\\"carbonKeyCode\\":35}";
    "KeyboardShortcuts_popup" = "{\\"carbonKeyCode\\":9,\\"carbonModifiers\\":2304}";
    "LaunchAtLogin__hasMigrated" = 1;
    "NSStatusItem Visible Item-0" = 0;
    "NSStatusItem Visible Item-1" = 0;
    "NSWindow Frame SUStatusFrame" = "520 556 400 134 0 0 1440 875 ";
    "NSWindow Frame SUUpdateAlert" = "401 357 637 398 0 0 1440 875 ";
    "NSWindow Frame com.sindresorhus.Preferences.FrameAutosaveName" = "393 541 585 435 0 0 1920 1055 ";
    "NSWindow Frame com.sindresorhus.Settings.FrameAutosaveName" = "465 304 510 487 0 0 1440 875 ";
    SUAutomaticallyUpdate = 1;
    SUEnableAutomaticChecks = 1;
    SUHasLaunchedBefore = 1;
    SULastCheckTime = "2024-09-16 19:06:38 +0000";
    SUSendProfileInfo = 0;
    SUUpdateGroupIdentifier = 167479513;
    WebKitDefaultFontSize = 13;
    WebKitJavaScriptEnabled = 0;
    WebKitPluginsEnabled = 0;
    WebKitStandardFont = "-apple-system-font";
    WebKitUserStyleSheetEnabledPreferenceKey = 1;
    WebKitUserStyleSheetLocationPreferenceKey = "/Applications/Maccy.app/Contents/Frameworks/Sparkle.framework/Resources/ReleaseNotesColorStyle.css";
    clearOnQuit = 0;
    enabledPasteboardTypes =     (
        "public.rtf",
        "public.utf8-plain-text",
        "public.tiff",
        "public.html",
        "public.file-url",
        "public.png"
    );
    historySize = 100;
    ignoreEvents = 0;
    ignoredPasteboardTypes =     (
        "com.agilebits.onepassword",
        "Pasteboard generator type",
        "net.antelle.keeweb",
        "com.typeit4me.clipping",
        "de.petermaurer.TransientPasteboardType"
    );
    imageMaxHeight = 66;
    migrations =     {
        "2024-07-01-version-2" = 1;
    };
    pasteByDefault = 1;
    pinTo = top;
    popupPosition = cursor;
    popupScreen = 0;
    removeFormattingByDefault = 0;
    showFooter = 1;
    showInStatusBar = 0;
    showSearch = 1;
    showTitle = 1;
    suppressClearAlert = 1;
    windowSize = "[450,800]";
}

Description

option+V shortcut doesnt work for opening maccy

command+option+v does work . it seems the combination for option+v doesnt work anymore, which is quite a pity given how convenient it was to summon it that way .....

Steps to Reproduce

change maccy open shortcut to option+v
input option+v
maccy does not open

@avichou avichou added the bug Something isn't working label Sep 17, 2024
@AlanGalaxy
Copy link

Also met with this, I'm currently in macOS Sequoia, I also tried 0.31 version, it does not work either.

@s235784
Copy link

s235784 commented Sep 17, 2024

It seems that the macOS 15 update has broken this shortcut. Hopefully, there's a way to reuse it.

@p0deje
Copy link
Owner

p0deje commented Sep 17, 2024

For now, there is nothing we can do - it's an Apple update in Sequoia. I can only suggest to report this issue to Apple - the more people complain to them, the higher chances are they will revert this decision.

Closing as duplicate of #813

@p0deje p0deje closed this as completed Sep 17, 2024
@AlanGalaxy
Copy link

macOS 15 disabled all the shortcut with "opt + any letter", one way to solve is to change to "control + letter"

@p0deje
Copy link
Owner

p0deje commented Sep 17, 2024 via email

@AbrarTheCrypto
Copy link

macOS 15 has disabled all shortcuts using “Option + any letter.” To fix this, follow these steps to restore your Maccy shortcut:

1.	Go to System Settings > Keyboard > Keyboard Shortcuts > Modifier Keys.
2.	Change the “Option” key to “Command” or another key of your choice.
3.	Restart your Mac to apply the changes.

After this, your old Maccy hotkey will work just like before.

@OrenAman
Copy link

if you use Karabiner so you can import this rule to map Left Option+V to Left Control+V

{
    "description": "Map Left Option+V to Left Control+V",
    "manipulators": [
        {
            "from": {
                "key_code": "v",
                "modifiers": {
                    "mandatory": ["left_option"],
                    "optional": ["any"]
                }
            },
            "to": [
                {
                    "key_code": "v",
                    "modifiers": ["left_control"]
                }
            ],
            "type": "basic"
        }
    ]
}

@CoreJa
Copy link

CoreJa commented Sep 24, 2024

For anyone who uses karabiner and doesn't want to ruin their original modifiers(say you don't want to bind ctrl+v to maccy and just want to use option+v), here's a simpler rule:

{
    "description": "maccy",
    "manipulators": [
        {
            "from": {
                "key_code": "v",
                "modifiers": { "mandatory": ["option"] }
            },
            "to": [{ "shell_command": "open -b org.p0deje.Maccy" }],
            "type": "basic"
        }
    ]
}

Here it doesn't bind to anything shortcut, instead it just calls maccy.app

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

7 participants