Cannot open commandline in Cursor 1.5.5

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

I cannot open command-line in cursor IDE, when open command-line it gets freeze and no thing happen.

Steps to Reproduce

Open cursor > Open command line > Freeze

Expected Behavior

Command-line is opened and can be used

Operating System

Linux

Current Cursor Version (Menu → About Cursor → Copy)

Version: 1.5.5
VSCode Version: 1.99.3
Commit: 823f58d4f60b795a6aefb9955933f3a2f0331d70
Date: 2025-08-25T17:40:25.290Z (1 day ago)
Electron: 34.5.8
Chromium: 132.0.6834.210
Node.js: 20.19.1
V8: 13.2.152.41-electron.0
OS: Darwin arm64 24.6.0

Hey, maybe your settings got messed up. Try the following:

  1. Settings (Cmd+,) → find
terminal.integrated.defaultProfile.osx
  1. Set: "zsh" or "bash"
  2. Or in settings.json:
{
  "terminal.integrated.defaultProfile.osx": "zsh"
}

4. Set the path to your shell:

{
  "terminal.integrated.profiles.osx": {
    "zsh": {
      "path": "/bin/zsh"
    }
  }
} 

5. If it doesn’t work: Cmd+Shift+P → “Terminal: Select Default Profile” → choose your shell

6. Restart the editor.

This topic was automatically closed 22 days after the last reply. New replies are no longer allowed.