Cmd+k remappings

Hey there

@ramicaza that must be extremely annoying to be dealing with, try with the options below and see if that solves your situation.

Check this thread about the remapping:

This Github issue can be useful too:

Are you using GTK, GNOME, XFCE any Distro in specific?

Workaround:

[
    {
        "key": "shift+cmd+k",
        "command": "cursorai.action.generateInTerminal",
        "when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
    },
    {
        "key": "cmd+k",
        "command": "workbench.action.terminal.clear",
        "when": "terminalFocus && terminalHasBeenCreated"
    },
    {
        "key": "cmd+k",
        "command": "-cursorai.action.generateInTerminal",
        "when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
    },
    {
        "key": "cmd+k",
        "command": "composer.startComposerPrompt",
        "when": "composerIsEnabled && !terminalFocus"
    },
    {
        "key": "cmd+k",
        "command": "-composer.startComposerPrompt",
        "when": "composerIsEnabled"
    },
    {
        "key": "cmd+i",
        "command": "composerMode.agent"
    }
]

2 Likes