Terminal prompt going below screen in full screen mode

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

When the terminal is extended to full screen in the editor view, the prompt can disappear below screen. The issue gets resolved when the terminal is minimized again.

Steps to Reproduce

  1. Extend the terminal to full screen using maximize panel size.
  2. Keep pressing enter until the terminal prompt is at the bottom edge of the screen.
  3. Keep pressing enter and the prompt disappear below screen with no way to scroll down.

Screenshots / Screen Recordings

Operating System

MacOS

Version Information

Version: 3.7.42
VS Code Extension API: 1.105.1
Commit: 5702c9cfca656d8710fad58402fe37f14345e3a0
Date: 2026-06-15T19:39:42.738Z
Layout: editor
Build Type: Stable
Release Track: Default
Electron: 39.8.1
Chromium: 142.0.7444.265
Node.js: 22.22.1
V8: 14.2.231.22-electron.0
xterm.js: 6.1.0-beta.256
OS: Darwin arm64 25.5.0

Does this stop you from using Cursor

No

Hi @sjain-profluent,

I haven’t been able to reproduce this on 3.7 or the upcoming 3.8.

Are you using any custom theming? For instance, your titlebar appears to look different from mine:

If you could share any customizations from your VSCode settings (Cmd + Shift + P > Open User Settings (JSON)), that would help us get to the bottom of this!

Hi

Here is my user settings:

{
    "window.autoDetectColorScheme": true,
    "workbench.preferredLightColorTheme": "Default Light Modern",
    "editor.fontSize": 15,
    "terminal.integrated.fontSize": 15,
    "redhat.telemetry.enabled": false,
    "vs-kubernetes": {
        "vs-kubernetes.suppress-helm-not-found-alerts": true,
        "vs-kubernetes.crd-code-completion": "disabled"
    },
    "cursor.cpp.enablePartialAccepts": true,
    "python.terminal.activateEnvironment": false,
    "editor.inlayHints.enabled": "off",
    "jupyter.askForKernelRestart": false,
    "cursor.cpp.disabledLanguages": [
        "markdown"
    ],
    "explorer.confirmDelete": false,
    "workbench.agentsWindowButton.enabled": false,
    "workbench.preferredDarkColorTheme": "Default Dark Modern",
    "workbench.statusBar.visible": false,
    "workbench.layoutControl.enabled": false
}

Thanks @sjain-profluent

Even with those settings, I still can’t reproduce!

Would you mind removing those settings temporarily to see if you can reproduce the issue without them?

Hi

I tried with removing all settings and the issue still persists. Note the issue seems to be cursor specific since I checked standard vscode on the same laptop and it doesn’t seem to have this issue.

Hey @sjain-profluent!

Was finally able to reproduce. The key is having the Cursor-specific Title Bar turned off (Cursor Settings → General → Layout → Title Bar). That’s what was different between your setup and mine.

With the title bar hidden, maximizing the panel and filling the terminal pushes the prompt below the bottom edge of the screen with no way to scroll down. Turning the title bar back on makes it behave normally again.

I’ve filed this internally! In the meantime, the workaround is to either re-enable the title bar, or un-maximize the panel to bring the prompt back into view.