this post was submitted on 17 Mar 2025
547 points (95.5% liked)
Programmer Humor
21658 readers
575 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
Vim and emacs are text editors.
Vs code is a code editor (but really it's also just a text editor)
Maybe they mean IDEs like visual studio?
I've never really heard it called a coding GUI before.
So an IDE is a code editor that ships with an LSP server, not just an LSP interface? (Doesn't have to be LSP as such but "stuff that an LSP server does").
My understanding has always been:
Text Editor: just writes text, no formatting (other than line endings)
Code Editor: A family Text Editors that have additional capabilities such as syntax highlighting. And optionally a plugin or extension ecosystem. (VSCode, vim family, Emacs, even gedit )
IDE: An application that includes Code Editor functionality, but also includes tools for a building on given tech stack. This comes out of the box, are a "part of" the application, are peers to the code editor, and cannot be removed, but can optionally be extended through plugins or extensions.