vote up 14 vote down star
6

Do you like to code using an IDE (like Eclipse or Visual Studio), or you prefer simply a text editor (like Vim) ?

I heard strong arguments against IDE's (specially from dynamic language programmers) but I really love Eclipse.

Which type do you prefer? Why? If it depends on the language please say so.

Thanks

flag

42 Answers

prev 1 2
vote up 0 vote down

When I'm writing anything except C# I use vim (in Linux) and notepad++ (in Windows, I don't like gvim). Visual Studio has Intellisense which is the best thing ever and makes coding in C# incredibly easy. Also it has the RAD (Rapid Application Development) form editor which makes design incredibly easy.

link|flag
vote up 0 vote down

I am a front end guy, so I have to use a multitude of editing environments. For flash, I use FlashDevelop or e-text editor. For Javascript and Html, I use Komodo or Dreamweaver. For basic text editing I use Notebook++.

Basically, each environment has a feature that simplifies a task, even Dreamweaver, that no other environment has. That's why I can never commit to just one editor like others here.

link|flag
vote up 0 vote down

For php I use Eclipse because it's easy to find and use classes and functions I've already written (can be a lot of them) and I like the clean GUI. When working on a *nix box I use VIM when editing all sorts of textfiles, and I find working with .NET development useless without Visual Studio.

And of course; Notepad++ to a little bit of everything

Good, old VIM howto

link|flag
vote up 0 vote down

The VS.PHP addon makes Visual Studio an excellent IDE for PHP. For Java Netbeans which also includes good PHP support.

For Text Editors... VIM, InType

link|flag
vote up 0 vote down

Give me an IDE anyday, visual studio or eclipse

link|flag
vote up 0 vote down

For embedded software, a lot of compiler producers supply their own IDE, with predictably variable results.

In one of the projects I'm working on, I find the compiler's IDE pretty awful, so I use a different one for coding, then hit Alt-Tab and F7 (build) every time I'm ready to compile the code.

One day, I'll find the time to learn Vim...

link|flag
vote up 0 vote down

Hello,

If you are starting use the text editor, only use the IDE when you are in a good level of the program language and them time is the most important thing.

link|flag
vote up 0 vote down

You might find this question relevant.

link|flag
vote up 0 vote down

Short answer: it depends. Certain kinds of work should almost always be done in a simple text editor (editing a settings file, for example). Certain kinds of larger projects, with complex revision control, certain kinds of gui work, large-scale work across folders and files, are often best managed with an IDE (but not always). Many IDE's also give you features like problem-detection as you type, which can speed development. Ultimately, though, it depends on what you're comfortable with.

With respect to text editors, this is one of the oldest debates in programming. The two most popular editors are vi (vim) and Emacs (GNU Emacs). vi has a steeper learning curve because of its unique modal interface (basically, there are two distinct modes of input/operation), but many programmers find they work faster in vi once they get they hang of it. Try both of the editors out for awhile, and see what you prefer. Also, experienced Emacs users are capable of using it as something very much like an IDE.

Another option is to try nano (it developed out of another editor, called 'pico'). nano (as its name implies) is simpler than both vi and Emacs, and so is best used for simple tasks. However, a good nano user can get some serious programming done in it, albeit less efficiently than with vi or Emacs.

In the end, though, the short answer remains the truth: it depends. Find what you're comfortable with, and go for it.

link|flag
vote up 0 vote down

If you're doing anything complex, IDE. If you're doing something relatively simple - one file, for example - text editor.

Fit the tool to the job. Having to create a Eclipse project and workspace and boot up Eclipse just doesn't make sense for a ten line program. Trying to edit a half million lines of code using a text editor is lunacy, as well.

link|flag
vote up 0 vote down

I tend to utilise different solutions depending on the technology stack. For .NET (especially C#) I tend to use Visual Studio exclusively. For Java I use Eclipse for most things. For HTML and JavaScript I tend to hand-crank most of this in notepad++ and debug in firebug (in firefox). If you are new to programming, the Visual Studio Express tools are good and allow really good debugging. Personally I would recommend doing something once the hard way before relying on an IDE. Then when it all goes wrong you will be able to fix it.

link|flag
vote up -2 vote down

like the IDE that sure, but sometimes it SUCKS

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.