- keep vscode shortcut
- keep cursor ai chat
- modify cursor ai chat shortcut with cmd + 8/9/0 combination
- cmd + shift + P
- select keyboard shortcut json
- place the json
[ | |
{ | |
"key": "cmd+0", | |
"command": "composer.startComposerPrompt", | |
"when": "composerIsEnabled" | |
}, | |
{ | |
"key": "cmd+i", | |
"command": "-composer.startComposerPrompt", | |
"when": "composerIsEnabled" | |
}, | |
{ | |
"key": "shift+cmd+9", | |
"command": "selectAllSearchEditorMatches", | |
"when": "inSearchEditor" | |
}, | |
{ | |
"key": "shift+cmd+l", | |
"command": "-selectAllSearchEditorMatches", | |
"when": "inSearchEditor" | |
}, | |
{ | |
"key": "cmd+9", | |
"command": "addCursorsAtSearchResults", | |
"when": "fileMatchOrMatchFocus && searchViewletVisible" | |
}, | |
{ | |
"key": "shift+cmd+l", | |
"command": "-addCursorsAtSearchResults", | |
"when": "fileMatchOrMatchFocus && searchViewletVisible" | |
}, | |
{ | |
"key": "shift+cmd+9", | |
"command": "aichat.insertselectionintochat" | |
}, | |
{ | |
"key": "shift+cmd+l", | |
"command": "-aichat.insertselectionintochat" | |
}, | |
{ | |
"key": "cmd+8", | |
"command": "aipopup.action.modal.generate", | |
"when": "editorFocus && !composerBarIsVisible" | |
}, | |
{ | |
"key": "shift+cmd+k", | |
"command": "-aipopup.action.modal.generate", | |
"when": "editorFocus && !composerBarIsVisible" | |
}, | |
{ | |
"key": "shift+cmd+8", | |
"command": "composer.openAsBar" | |
}, | |
{ | |
"key": "shift+cmd+k", | |
"command": "-composer.openAsBar" | |
}, | |
{ | |
"key": "cmd+k", | |
"command": "-aipopup.action.modal.generate", | |
"when": "editorFocus && !composerBarIsVisible" | |
}, | |
{ | |
"key": "cmd+9", | |
"command": "aichat.newchataction" | |
}, | |
{ | |
"key": "cmd+l", | |
"command": "-aichat.newchataction" | |
}, | |
{ | |
"key": "cmd+l", | |
"command": "expandLineSelection", | |
"when": "textInputFocus" | |
}, | |
{ | |
"key": "cmd+p", | |
"command": "-expandLineSelection", | |
"when": "textInputFocus" | |
} | |
] |