๐ Ultimate Guide: Resolving Cursor AI Keyboard Shortcut Conflicts
๐ก Quick Solutionsโ
- Default AI shortcuts:
- Windows/Linux:
Ctrl + K
- macOS:
Cmd + K
- Windows/Linux:
- Code commenting:
- Windows/Linux:
Ctrl + M, Ctrl + C
- macOS:
Cmd + M, Cmd + C
- Windows/Linux:
- Uncomment:
- Windows/Linux:
Ctrl + M, Ctrl + U
- macOS:
Cmd + M, Cmd + U
- Windows/Linux:
๐ง Common Conflictsโ
VSCode Command Conflictsโ
- Terminal clear
- Code folding
- File operations
- Comment/uncomment operations
โก Custom Shortcut Settingsโ
Method 1: Override Default AI Shortcutsโ
[
{
"key": "shift+cmd+u",
"command": "aipopup.action.modal.generate",
"when": "editorFocus",
"args": { "invocationType": "toggle" }
},
{
"key": "cmd+u",
"command": "aipopup.action.modal.generate",
"when": "editorFocus",
"args": { "invocationType": "new" }
},
{
"key": "cmd+u",
"command": "cursorai.action.generateInTerminal",
"when": "terminalFocus && terminalHasBeenCreated || terminalFocus && terminalProcessSupported"
}
]
Method 2: Context-Based Bindingโ
{
"key": "cmd+k",
"command": "-aipopup.action.modal.generate",
"when": "terminalFocus"
}
๐ฏ Best Configurationโ
Editor Focusโ
{
"key": "alt+a",
"command": "aipopup.action.modal.generate",
"when": "editorFocus"
}
Terminal Focusโ
{
"key": "alt+t",
"command": "cursorai.action.generateInTerminal",
"when": "terminalFocus"
}
๐ ๏ธ Advanced Customizationโ
Command Categoriesโ
-
AI Commands:
{
"key": "alt+space",
"command": "aipopup.action.modal.generate",
"when": "editorFocus"
} -
Edit Operations:
{
"key": "ctrl+m ctrl+c",
"command": "editor.action.commentLine",
"when": "editorTextFocus"
}
๐ซ Best Practicesโ
Keyboard Layout Optimizationโ
- Group related commands
- Use easily accessible key combinations
- Avoid system shortcuts
- Consider ergonomics
Workflow Enhancementโ
- Create task-specific shortcuts
- Document custom bindings
- Regularly review shortcuts
- Backup configuration
๐ฏ Expert Tipsโ
Effective Configurationโ
-
Shortcut Planning:
- Frequently used commands
- Context-based bindings
- Ergonomic key combinations
-
Testing Strategy:
- Check in different contexts
- Verify conflicts
- Document changes
๐จ Troubleshootingโ
Common Issuesโ
-
Inactive shortcuts:
- Check context conditions
- Verify syntax
- Restart editor
-
Resolving conflicts:
- Identify overlapping commands
- Use unique key combinations
- Consider
when
clause
๐ฎ Quick Referenceโ
Core Commandsโ
// AI Commands
"aipopup.action.modal.generate"
"cursorai.action.generateInTerminal"
// Code Operations
"editor.action.commentLine"
"editor.action.removeCommentLine"
Context Conditionsโ
"when": "editorFocus"
"when": "terminalFocus"
"when": "editorTextFocus"
๐ฎ Future Improvementsโ
- Better conflict detection
- Custom shortcut config files
- Context-based binding
- Enhanced customization options
๐ Bonus: Common Shortcut Schemesโ
VSCode Styleโ
{
"key": "ctrl+/",
"command": "editor.action.commentLine"
}
JetBrains Styleโ
{
"key": "ctrl+alt+/",
"command": "editor.action.commentLine"
}
Custom Productivity Layoutโ
{
"key": "alt+c",
"command": "editor.action.commentLine"
}