Note: The Listed platform will permanently shut down December 31, 2026. Your data published on Listed will still be available in your personal Standard Notes account. Learn more

Mimic Ulysses shortcuts on Standard Notes

With the assistance of Chat GPT, I was able to replace some Standard Notes keyboard shortcuts with equivalent Ulysses shortcuts, so I can easily change the current view.

Following is the Karabiner-Elements Complex Modification I am using now.

Shortcut Ulysess Standard Notes
⌘1 Show/Hide Library Toggle tags panel
⌘2 Show/Hide Sheet List Toggle notes panel
⌘3 Show Editor Toggle focus mode
{
    "description": "Remap Left Option + 1, 2, 3 to Shift + Left Option + E, L, F for Standard Notes",
    "manipulators": [
        {
            "conditions": [
                {
                    "bundle_identifiers": [
                        "^org.standardnotes.standardnotes$"
                    ],
                    "type": "frontmost_application_if"
                }
            ],
            "from": {
                "key_code": "1",
                "modifiers": { "mandatory": ["left_command"] }
            },
            "to": [
                {
                    "key_code": "e",
                    "modifiers": ["shift", "left_command"]
                }
            ],
            "type": "basic"
        },
        {
            "conditions": [
                {
                    "bundle_identifiers": [
                        "^org.standardnotes.standardnotes$"
                    ],
                    "type": "frontmost_application_if"
                }
            ],
            "from": {
                "key_code": "2",
                "modifiers": { "mandatory": ["left_command"] }
            },
            "to": [
                {
                    "key_code": "l",
                    "modifiers": ["shift", "left_command"]
                }
            ],
            "type": "basic"
        },
        {
            "conditions": [
                {
                    "bundle_identifiers": [
                        "^org.standardnotes.standardnotes$"
                    ],
                    "type": "frontmost_application_if"
                }
            ],
            "from": {
                "key_code": "3",
                "modifiers": { "mandatory": ["left_command"] }
            },
            "to": [
                {
                    "key_code": "f",
                    "modifiers": ["shift", "left_command"]
                }
            ],
            "type": "basic"
        }
    ]
}

More from Marcos D Alves
All posts