Hacker News new | ask | show | jobs
by elAhmo 406 days ago
Isn't continue.dev also open source and not using 'their backend' when sending stuff? I didn't use it in a while, but I know it had support for llama, local models for tab completions, etc.
1 comments

Continue is doing great work, but they're an extension (plugin)!
What’s wrong with a plugin? I don’t see the benefit of an IDE over a plugin.
The extensions API lets you control the sidebar, but you basically don't have control over anything in the editor. We wouldn't have been able to build our inline edit feature, or our navigation UI if we were an extension.
Continue.dev is an extension and it does inline edits just fine in VS Code and IntelliJ.
Big fan of Continue btw! There's a small difference in how we handle inline edits - if you've used inline edits in Cursor/Windsurf/Void you'll notice that a box appears above the text you are selecting, and you can type inside of it. This isn't possible with VS Code extensions alone (you _have_ to type into the sidebar).
Is inline edits the same as diff edits? In that case I think Cline and Roo can do it as well.
If I understand your question correctly - Cline and Roo both display diffs by using built-in VS Code components, while Cursor/Windsurf/Void have built their own custom UI to display diffs. Very small detail, and just a matter of preference.