I wish there was a plugin / cli / TUI that would grab what you are doing and copy it into your clipboard for a chat app. That way I don't need to worry about tokens and usage limits.
Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
21–30 of 140 posts
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#22Compared to Cursor with full codebase context where I can get away with less, so I typically fall back to the lazy prompting patterns of "not like that, do better". Which likely eats up more time than had I prompted well to begin with.
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#23That being said, it is worth the price as it can be helpful sometimes. I pay $15 per month and haven't gone over the token limit yet. ChatGPT is still fundamentally more useful however.
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#24I thought Cursor was pointless until trying out Google's latest coding GPT, which blows everything else out of the water. I may switch from VSCode to cursor for the next few months just because of that.
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#25I use copilot through VSCode. The copilot plugin lets me either ask questions or ask for edits to my code. I can choose which files to include as an additional context to the prompt. I can additionally choose which model to use. Some models are unlimited, others have some monthly quota. GPT-4o is unlimited and quite good with short tasks. It has also shortcuts for instance fixing errors in the code by just selecting…
But you aren't just asking for edits to your code, right? Copilot will actively suggest code completion as you type. This is the real benefit over chat as it's like pair programming. That, and the way it generates commit comments, I don't think I will write another commit message even again.
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#26The big secret to success?
JetBrains IDEs have “compare with clipboard” - essential tool to verify what the LLM changed.
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#27Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#28What about projects where secrecy matters? How do hedge funds use these? Are you comfortable feeding the secret sauce to Cursor?
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#29I use Claude Code (cli tool) and it's on another level. Not even comparable to code autocomplete à la Copilot or copy/pasting into a LLM chat app. It knows about your whole code base, can use external tools, read documentation, run tests, etc. Even as an experienced developer, it's been a huge productivity boost. The main downside is that it can quickly get expensive.
Re: Ask HN: How much better are AI IDEs vs. copy pasting into chat apps?
#30They are a pain to apply manually. I’ve tried several visual studio code extensions that apply patches from clipboard or provide an input for it, even saving them to a file and running command line tools - but they all fail
Anyone has a good system, extension or application to easily copy these diffs from ChatGPT and apply them to the code on visual studio (or some other editor)?