this post was submitted on 04 Dec 2024
24 points (96.2% liked)
Programming
17652 readers
222 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Platformio is an IDE based on VSCode.
VSCode CAN be an IDE.
But it isn't natively an IDE
I would say that for something to be an IDE it has to be meant to be an IDE. Clearly Microsoft didn’t intend for it to be an IDE or they would have called it that. Just because you can build something that looks and performs like an F1 race car in your garage out of an old lawnmower or ford Taurus or whatever doesn’t make it an F1 car. Unless it’s racing at Monaco in an F1 race, it ain’t an F1 car. Same thing with VS Code. It’s a code editor, like Sublime or vim.
Honestly interested what makes something not an IDE but can be one? The fact that it requires plugins to turn it into an IDE?
Does that mean Eclipse is not an IDE either, since it requires either JDT or CDT to be anywhere near useful?
I'm interested in that too, where's the line and how much does it matter?
There isn't a hard line. IDE means Integrated Development Environment. It just means that tools that - in the stone ages - were used separately are integrated into your editor. Common tools that IDEs integrate that would be separate tools with a text editor like Notepad:
VSCode has all of those. The fact that it implements them in a pluggable way doesn't mean it doesn't.
Even though "is it an IDE" is a blurry line, VSCode is very clearly far across that line.
The only reasons people say it isn't are a) as a put-down - it's not a real IDE like - or b) because Microsoft put some nonsense about it not being an IDE on their website in order to try and explain why they make two IDEs (VSCode and VS).
So Kate is one too then, right? it has all of that and was designed for it to be used as an IDE.
Yes I'd say so.
So I guess vim is also an IDE then? My setup can do all of that.
I don't really know anything about Vim so I'd have to take your word for it.
To me, something like visual studio is an ide.
Out of the box it can run and debug c# programs. I can step through line by line, I can add breakpoints, I can watch variables.
It is a great experience for developing c#.
To get vscode to do that requires a lot of configuration.
Sometimes all that config is done by only 1 plugin.
The fact that there are really well made plugins for so many different languages and frameworks is vscodes power. I don't just get a js/ts/node/deno ide, but it can be super tailored to Vue/react/svelte/quasar/nuxt/next/whatever.
All while in a familiar editor, and without having to install another program.
That's what I mean by vscode not being an IDE.
Vscode has the ability to be an IDE, but it's 3rd parties that actually do the work to achieve this.