←back to thread

737 points rcchen | 1 comments | | HN request time: 0.249s | source
Show context
extr ◴[] No.44537358[source]
IMO other than the Microsoft IP issue, I think the biggest thing that has shifted since this acquisition was first in the works is Claude Code has absolutely exploded. Forking an IDE and all the expense that comes with that feels like a waste of effort, considering the number of free/open source CLI agentic tools that are out there.

Let's review the current state of things:

- Terminal CLI agents are several orders of magnitude less $$$ to develop than forking an entire IDE.

- CC is dead simple to onboard (use whatever IDE you're using now, with a simple extension for some UX improvements).

- Anthropic is free to aggressively undercut their own API margins (and middlemen like Cursor) in exchange for more predictable subscription revenue + training data access.

What does Cursor/Windsurf offer over VS Code + CC?

- Tab completion model (Cursor's remaining moat)

- Some UI niceties like "add selection to chat", and etc.

Personally I think this is a harbinger of where things are going. Cursor was fastest to $900M ARR and IMO will be fastest back down again.

replies(38): >>44537388 #>>44537433 #>>44537440 #>>44537454 #>>44537465 #>>44537526 #>>44537594 #>>44537613 #>>44537619 #>>44537711 #>>44537749 #>>44537830 #>>44537848 #>>44537853 #>>44537964 #>>44538026 #>>44538053 #>>44538066 #>>44538259 #>>44538272 #>>44538316 #>>44538366 #>>44538384 #>>44538404 #>>44538553 #>>44538681 #>>44538894 #>>44538939 #>>44539043 #>>44539254 #>>44539528 #>>44540250 #>>44540304 #>>44540339 #>>44540409 #>>44541020 #>>44541176 #>>44541551 #
socalgal2 ◴[] No.44538066[source]
just curious because I'm inexperienced with all the latest tools here

> - Tab completion model (Cursor's remaining moat)

What is that? I have Gemini Code Assist installed in VSCode and I'm getting tab completion. (yes, LLM based tab completion)

Which, as an aside I find useful when it works but also often extremely confusing to read. Like say in C++ I type

    int myVar = 123
The editor might show

    int myVar = 123;
And it's nearly impossible to tell that I didn't enter that `;` so I move on to the next line instead of pressing tab only to find the `;` wasn't really there. That's also probably an easy example. Literally it feels like 1 of 6 lines I type I can't tell what is actually in the file and what is being suggested. Any tips? Maybe I just need to set some special background color for text being suggested.

and PS: that tiny example is not an example of a great tab completion. A better one is when I start editing 1 of 10 similar lines, I edit the first one, it sees the pattern and auto does the other 9. Can also do the "type a comment and it fills in the code" thing. Just trying to be clear I'm getting LLM tab completion and not using Cursor

replies(2): >>44538320 #>>44538711 #
james_marks ◴[] No.44538320[source]
This feeling of, “what exactly is in the file?” is why I have all AI turned off in my IDE, and run CC independently.

I get all AI or none, so it’s always obvious what’s happening.

Completions are OK, but I did not enjoy the feeling of both us having a hand on the wheel and trying to type at the same time.

replies(1): >>44540107 #
1. acka ◴[] No.44540107[source]
It gets even worse when all three of IntelliSense, AI completion, and the human are all vying for control of the input. This can be very frustrating at times.