Where does the bug appear (feature/product)?
Cursor IDE
Describe the Bug
On macOS, the default shortcut for Cycle Model Parameter is Shift+Cmd+/. This is interpreted by macOS as Cmd+?, the standard Help menu shortcut, so the default binding opens/focuses the Help menu instead of cycling the model parameter.
I tried overriding the binding in ~/Library/Application Support/Cursor/User/keybindings.json:
{
"key": "ctrl+cmd+/",
"command": "composer.cycleModelParameter"
}
The override works in the main Cursor/editor window, but it does not work in the standalone Agents window. Removing the original when clause also did not help.
Steps to Reproduce
- On macOS, open the standalone Agents window.
- Focus the Agents window.
- Press the default shortcut Shift+Cmd+/.
- Observe that macOS Help opens/focuses instead of cycling the model parameter.
- Add this override to ~/Library/Application Support/Cursor/User/keybindings.json:
{ "key": "ctrl+cmd+/", "command": "composer.cycleModelParameter" } - Reload/restart Cursor.
- Press Ctrl+Cmd+/ in the main Cursor window.
- Press Ctrl+Cmd+/ in the standalone Agents window.
Expected Behavior
Cycle Model Parameter should have a default shortcut that works on macOS and does not conflict with the Help menu.
User keybinding overrides for composer.cycleModelParameter should also apply in the standalone Agents window, not only in the main Cursor/editor window.
Operating System
MacOS
Version Information
Version: 3.3.30
VSCode Version: 1.105.1
Commit: 3dc559280adc5f931ade8e25c7b85393842acf30
…
OS: Darwin arm64 25.3.0
Does this stop you from using Cursor
No - Cursor works, but with this issue