Where does the bug appear (feature/product)?
Cursor IDE
Describe the Bug
I’m trying to change the shortcut for “Add to Chat” during selections by adding the following to my keybindings.json:
{
"key": "alt+cmd+;",
"command": "composer.sendToAgent",
"when": "editorHasPromptBar && editorPromptBarFocused"
},
{
"key": "cmd+l",
"command": "-composer.sendToAgent",
"when": "editorHasPromptBar && editorPromptBarFocused"
},
{
"key": "cmd+l",
"command": "-aichat.newchataction"
}
But, even after reloading the editor, this is not taking effect. I don’t see the ⌘ + L shortcut anymore on the bar that appears and in fact, no shortcut appears there but pressing ⌘ + ⌥ + ; is also not doing anything. So, for some reason, even after explicitly setting a different keymap, Cursor doesn’t seem to heed this request.
A general feedback for Cursor folks is to strongly consider an alternate keymap for those of us used to VSCode keymap: it’s so friggin’ annoying when Cursor hijacks commonly used ones like ⌘ + L and ⌘ + ⇧ + K.
Steps to Reproduce
Add the following to keybindings.json:
{
"key": "alt+cmd+;",
"command": "composer.sendToAgent",
"when": "editorHasPromptBar && editorPromptBarFocused"
},
{
"key": "cmd+l",
"command": "-composer.sendToAgent",
"when": "editorHasPromptBar && editorPromptBarFocused"
},
{
"key": "cmd+l",
"command": "-aichat.newchataction"
}
And try using the new shortcut to add some selected text to chat. Notice that it doesn’t work.
Expected Behavior
Custom shortcut should be respected and even shown in the bar that appears when selecting text.
Operating System
MacOS
Current Cursor Version (Menu → About Cursor → Copy)
Version: 2.2.20
VSCode Version: 1.105.1
Commit: b3573281c4775bfc6bba466bf6563d3d498d1070
Date: 2025-12-12T06:29:26.017Z
Electron: 37.7.0
Chromium: 138.0.7204.251
Node.js: 22.20.0
V8: 13.8.258.32-electron.0
OS: Darwin arm64 25.0.0
Does this stop you from using Cursor
No - Cursor works, but with this issue

