this post was submitted on 17 Mar 2025
481 points (95.5% liked)
Programmer Humor
21610 readers
1869 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
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
I would say that an IDE is something that includes build/run tools integrated into it. Everything else is just a text editor. (But that's just my opinion of course)
To expand on my point, I don't think it makes sense to call vs code an integrated development environment if it doesn't actually have the environment integrated.
Visual studio and idea would be examples of IDEs, they actually have all of the tools and frameworks needed to run the languages they were built for out of the box.
You can't run node or python out of the box with just vs code for example, without their respective tooling, all vscode can do is edit the code and editing code is not functionally different from editing any other text.
So I maintain that both vim and vscode are text editors and not IDEs
Vocode integrates consoles for whatever you want. I use node and sql all the time.
I'd say build and run tools are pretty integrated into vim. Type
:mak
and there you go, it's not like vs studio would be a single process either.