Hey, thanks for the report. This is a known class of bugs where the built-in browser tab intercepts keyboard shortcuts from other areas of Cursor. Several similar issues (with Cmd+N, Cmd+T, Cmd+L) have been fixed recently, but this specific one with Option+Arrow keys needs more repro info.
Could you share a few details so we can properly track this?
Exact Cursor version (Help > About or Cursor Settings > About)
Is the browser tab open or visible when this happens, or does it happen even when the browser is closed?
The exact key combo you’re pressing, is it Option+Left or Option+Right?
Does closing the browser tab (if open) stop the issue?
This will help the team reproduce and fix it. Thanks!
This happens with both option-left and option-right.
Yes, closing the browser tab fixes the issue. If you open a new browser tab, it is fine until you choose another URL from the history autocomplete list. See video #2.
Please let me know if I can provide any further information!
@larrylegend Great repro info, this is exactly what we needed.
The trigger being URL autocomplete selection is a really useful detail. It clearly causes the browser to keep some kind of focus or keybinding context that intercepts Option+Arrow from other panels.
I’ve flagged this with the team. No ETA yet, but the detailed steps and videos will definitely help us prioritize it.
In the meantime, the workaround you found, closing and reopening the browser tab, is the best option.
When the chat input field is focused, pressing Option+Left or Option+Right (standard macOS word-jump shortcuts) does not move the cursor within the text input as expected. Instead, the keypresses are intercepted by the application and trigger Cursor’s global shortcuts (in this case previous/next in the integrated browser’s history even if the browser is closed).
Keyboard shortcuts that are standard text-editing gestures (Option+Arrow) should be consumed by a focused input element and never bubble up to global application handlers. This violates standard macOS text input conventions and makes the chat input frustrating to use for anyone editing their messages before sending.
Steps to Reproduce
Open the Cursor chat panel.
Click into the chat input field so it has focus.
Type a few words.
Press Option+Left or Option+Right.
Expected Behavior
Since the chat input field is focused, Option+Left / Option+Right should be handled locally by the input, moving the cursor word by word within the text, as is standard macOS behavior in any text field.