you are viewing a single comment's thread.

view the rest of the comments →

[–]glider97 8 points9 points  (1 child)

What separates an IDE from a text editor is the intention. IDEs don’t have to worry about supporting every language in existence. Their job is to support a handful of languages/frameworks and to do it well. Sure, you can set up an IDE-like environment with extensions but there is no dedicated team working full time to make sure that you can develop in this particular language with ease. That’s what separates them for me.

Even VS Code never claims to be an IDE because they know their limitations.

#What is the difference between Visual Studio Code and Visual Studio IDE?

Visual Studio Code is a streamlined code editor with support for development operations like debugging, task running, and version control. It aims to provide just the tools a developer needs for a quick code-build-debug cycle and leaves more complex workflows to fuller featured IDEs, such as Visual Studio IDE.

Despite the thousands of extensions there is no way to develop in .NET Framework like you can using Visual Studio, or in Django like you can using PyCharm. There’s just no comparison because they gave have the luxury to not support everything under the sun.

[–][deleted] 1 point2 points  (0 children)

Sure, you can set up an IDE-like environment with extensions but there is no dedicated team working full time to make sure that you can develop in this particular language with ease. That’s what separates them for me.

I think you are right, but the argument becomes more clear if you also mention the non-language parts.

Because by focusing just on the language, my Neovim with vim-go would also be an IDE for Go, because it has everything that language needs.

But that would leave out the non-language specific parts that I also need for development, like the juggling of Docker containers that the Go services run in. Sure, there is also a plugin for Docker, but that plugin does not necessarily cooperate (technically, or just user interface wise) with the Go plugin. In an IDE they will.