Cursor 1.0
91–100 of 492 posts
Re: Cursor 1.0
#92It's an IDE but they don't bother to list on their website what languages you can use the IDE to develop for? I feel like I'm going crazy here. How can they not bother to mention that on their website / marketing?
Re: Cursor 1.0
#93It's an IDE but they don't bother to list on their website what languages you can use the IDE to develop for? I feel like I'm going crazy here. How can they not bother to mention that on their website / marketing?
Re: Cursor 1.0
#94I don't really see why people still use Cursor over tools like Cline / Roo Code. I'm guessing it's as they clearly have a larger viral marketing department than engineers, as the application itself doesn't perform nearly as well, requires you to have another IDE installed and their subscriptions nerf the models context sizes etc...
A lot of power in social influence. Especially with the younger generations who remix that influence - compound spread of mindshare. Cursor is all over social media.
There's still a ton of low hanging fruit that other Copilot-style autocomplete products don't seem to be picking up, like using clipboard contents, identifying the next place in the file to jump to, etc.
I primarily save time coding with AI with autocomplete, followed by chat, with agentic flows a very distant 3rd, so Cursor is a legitimately better product for me.
Re: Cursor 1.0
#95Its so painful - the model never knows the directory in which it is supposed to be and goes on a wild goose chase of searching in the wrong repo. I have to keep guiding it to the right repo. Anyone here has had success with such a setup?
Re: Cursor 1.0
#96Re: Cursor 1.0
#97Earlier quoted context omitted.
It’s more of a ticking time bomb because it relies so heavily on upstream model providers who all have competing products, particularly Claude Code.
Until Claude Code becomes manageable price wise, I don’t think Cursor really sees them as their competition. I can burn the whole cursor subscription price in a single day with Claude Code.
Re: Cursor 1.0
#98When reviewing the changes made from agent mode, I don’t know why the model made the change or whether the model even made the change versus a tool call making the change. It’s a pain to go fish out the reason from a long response the model gives in the chat.
Example: I recently asked a model to set up shadcn for a project, but while trying to debug why things looked pretty broken, I had sift through a bunch of changes that looked like nasty hallucinations and separate those from actual command line changes that came from shadcn's CLI the model called. Ended up having to just do things the old fashioned way to set things up, reading the fine manual and using my brain (I almost forgot I had one)
It would be nice if above every line of code, there’s a clear indication of whether it came from a model and why the model made the change. Like a code comment, but without littering the code with actual comments
Re: Cursor 1.0
#99I love Cursor, but it feels like a ticking time bomb with extensions not being updated at the same rate as VSCode. Also another issue I am starting to see is the lack of shared MCP servers. If I have VSCode, Cursor, and Claude open, each one is running its own instance of the MCP server. You can imagine that with a dozen or so MCP's, the memory footprint becomes quite large for no reason.
i wrote a MCP with plugin system where you only need to run 1 instance and add plugins via config file.
Re: Cursor 1.0
#100I love Cursor, but it feels like a ticking time bomb with extensions not being updated at the same rate as VSCode. Also another issue I am starting to see is the lack of shared MCP servers. If I have VSCode, Cursor, and Claude open, each one is running its own instance of the MCP server. You can imagine that with a dozen or so MCP's, the memory footprint becomes quite large for no reason.
That's why i use Docker MCP Catalog. One MCP Server to rule them all. more info: https://www.youtube.com/watch?v=6I2L4U7Xq6g
https://github.com/tuananh/hyper-mcp
it's a MCP server with WASM plugin system, packaged, signed & published via OCI registry.