Is Sublime Text 2 Useful as a C++ IDE? [vs. Visual Studio]
c++, ide, sublimetext2, visual-studio
Solution
You can write code with any text editor and build it using a separate compiler. Integrated Development Environments (IDEs) like Visual Studio are seen by some as a convenience since they package the text editor, the project management, and the compiler together.
For example, when I write code on Linux, I use vim to write my code and the gcc compiler to build it.
Is it possible to create a c++ program using just SublimText 2, or is this not so recommended? Is it possible to use Sublime Text as an IDE in the same sense as you do Visual Studio?
I recommend whatever works best for you. When I'm in Windows, I use Visual Studio to build my projects, but I still usually use my own editor (vim) to write the code.
Problem
I've been spending a lot of time trying to figure out which way to go about building a C++ program. I fell in love with Sublime Text 2 as an editor, because it's extremely powerful and extensible. However, at the same time, it seems that IDE's like Visual Studio or Codeblocks is necessary for developing a C++ program. Is it possible to create a c++ program using just Sublime Text 2, or is this not so recommended? Is it possible to use Sublime Text as an IDE in the same sense as you do Visual Studio? All answers appreciated :) Yes, I've done extensive research; I'm not very experienced in programming.