When having a very long conversation in the Cursor Chat or Agent panel, pressing Ctrl + F (or Cmd + F on Mac) often fails to open the search bar.
Even if the focus is inside the Chat panel, the shortcut either does nothing, or it incorrectly opens the search bar in the main code editor instead of the chat history. This makes it extremely difficult to locate specific topics or past conclusions (like deployment steps or SQL queries) in long-running chats.
Why this happens (Hypothesis)
- Focus Division: The VS Code/Electron core seems to lose focus for the Webview panel, passing the shortcut back to the text editor.
- Virtual Scrolling: Even when we manage to trigger a search, text that has scrolled out of view (unrendered DOM nodes due to virtual list optimization) cannot be searched or highlighted.
Suggested Solutions / Feature Request
Instead of relying on the shaky Ctrl + F global shortcut, please consider:
- Dedicated Search Bar: Add a permanent search icon or input box at the top of the Chat/Agent panel (similar to Slack or browser history search).
- Global Search Integration: Allow us to search chat histories directly via the standard Global Search (
Ctrl + Shift + F).
This would be a massive quality-of-life improvement for power users who rely heavily on long-context AI sessions. Thank you!