
As shown in the image above, Cursor displays “x1” after startup, allowing you to select multiple models to generate code. However, this “x1” disappears after a short while. What could be the problem?

As shown in the image above, Cursor displays “x1” after startup, allowing you to select multiple models to generate code. However, this “x1” disappears after a short while. What could be the problem?
Why did “1x” disappear after starting up for a while? It doesn’t show up when I hover the mouse over it. Why is this happening? Do I need to change any settings? My cursor version is 2.4.7.
Hey! This x1 feature (selecting multiple models in parallel) requires Git to be initialized in your project.
Parallel agents work via Git worktrees, which lets each model run in an isolated copy of the project.
Try this:
git statusgit initAfter Git is initialized, the x1 option should appear and stay available.
Related thread: Why can't I select multiple models to generate with my Cursor?
Let me know if the issue still happens after git init.
You’re right, I’ve solved it using your method. Thank you.