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

1 2 next
vote up 32 vote down check

I used to hate vim, but I made a determined effort to learn it and now I find myself typing everywhere as if I'm in vim... and then realizing I'm not in vim.

Vim takes a bit of learning, but once you learn even just the basics, it's great.

link|flag
5  
agreed! :) :wq – axel_c Sep 25 '08 at 21:26
show 4 more comments
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 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 2 vote down

IDE? Texteditor? Just CLI.

C:\>echo public class X { public static void main(String[] args) { System.out.pr
intln("waa"); } } > X.java

C:\>javac X.java

C:\>java X
waa

C:\>_
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

You might find this question relevant.

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

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

Give me an IDE anyday, visual studio or eclipse

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

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 1 vote down

Hands down: ViEmu for Visual Studio Visual Studio + VIM = ViEmu

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

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

Instead of using VS.NET for testing some pieces of code Snippet Compiler is the best http://tech.wowkhmer.com/post/2008/10/29/Compile-and-Test-NET-Code-Snippet-Without-Saving.aspx

link|flag
vote up 0 vote down

For a language like java its very difficult to write code without an IDE (especially if you are developing webapps in any new fangled frameworks) but, I usually also have Vim running handy to make quick edits(while not having to wait for the IDE to choke up trying to do all its mojo)A

link|flag
vote up 0 vote down

I use vim for C++ coding on Solaris at work. It very fast and I love all the 'magic' behind it. I'm doing some 3D programming at home with DirectX so I decided to give VS 2008 a try. It's not bad but without Visual Assist X I can't see any benefits for C++ developer. With VA it's pretty cool :)

link|flag
vote up 0 vote down

It depends on what I am doing:

Code Generation, Refactoring
I use IDEs like Visual Studio + Resharper, Eclipse, MonoDevelop or SharpDevelop.

Heavy Code Writing, real-world Regex replacements, advanced text editing
I use advanced editors like Vim or UltraEdit. They are far superior to the IDE ones.

Generating tons of repeated lines
Like INSERTs for a set of data, etc... I use Gnumeric or Excel to generate code and then copy and paste.

Simple test programs
Either an editor or SnippetCompiler

link|flag
vote up -2 vote down

like the IDE that sure, but sometimes it SUCKS

link|flag
vote up 0 vote down

Probably both, depending on the stage of the project. I find I work much faster in a text editor especially in the early stages of putting together new HTML, JS, CSS, XSLT, batch scripts etc. But when I'm returning to something I wrote a few years back, it sure helps to use Aptana to navigate through my functions.

It might come to the same thing anyway. You'll probably choose a text editor with syntax highlighting and attach tools for compiling or validating so it becomes a bit like a mini-IDE anyway.

Also, using a text editor forces you to be quite disciplined in the way you structure your code just to make it navigable, and that's no bad thing. But I'd hate to write any Flex in a text editor - code completion becomes much more important once you start having to add "import" lines everywhere.

link|flag
vote up 0 vote down

IDE, because it's also a text editor.

link|flag
vote up 8 vote down

These days learning the language is only the smallest part of becoming a developer or adapting to a new situation. Learning the libraries that you are working with is much more complicated. While I understand other peoples need for minimalism (vi/vim) even a decent IDE will give you a lot to help you in your day to day work.

  • Code Completion, instead of digging through documentation you should be able to tab your way through methods and save yourself a lot of writing

  • Refactoring, Global Find and Replace is no replacement for good refactoring support, that starts with renaming functions, variables, classes, ... and ends with some of the functionality that you can find in current Java IDE (IntelliJ for example)

  • Syntax Checking, helping you out with writing correct code while you type

And lots more, and while I think that vi/vim has it's place, an IDE, any IDE is another tool in your toolchest, and used appropriately it will make you a better developer.

link|flag
show 2 more comments
vote up 0 vote down

Ever tried the Delphi-IDE? Never anything else! It's simply the best.

link|flag
vote up 0 vote down

If you learn to develop without an IDE, you’ll also have no trouble developing using an IDE. But that is not always the situation for the reserve case.

link|flag
vote up 0 vote down

The amount of information presented on the screen what counts. Today you can't afford typing in a 80x25 shell window, you would be less productive. You need an IDE or a programmer's editor with plugins, syntax highlight etc. You should be able to navigate in the source tree quickly, be able to browse the code structure quickly and have a lot of functions automated. The spared milliseconds/brain activity add up during a day.

link|flag
vote up 0 vote down

depends on the language.

For dynamic languages, I tend to use a simple editor. For writing Perl and Python code, I use SciTE.

When I have to write code in a statically typed language (I do some Java and C#), I end up in a full blown IDE like Eclipse or Visual Studio.

Kinda interesting.

link|flag
vote up 0 vote down

If you learn the editor way of working you will get a grip of how the whole toolchain is connected. emacs, vi, make, cc. I'm pretty old school but am often asked to answer questions about problems in IDE's where the developers don't understand how configuration variables which is set in the IDE affect the compiler and linker. To learn a tool is an investment, the cost is time and I believe learning the basic developer tools as vi and emacs will always payoff. It has for me. I appreciate the IDE features like type ahead. But features like that can also make you write bloated code because they makes it easier to write lots of it.

link|flag
vote up 6 vote down

I'm an IDE man myself. One of my biggest problems is staying organized so anything that can be done to help me keep track of everything is a major plus. Any editor these days can do syntax highlighting for major languages. It's the tools and extensibility that make the difference.

I can't imagine life without Eclipse, since I do Java/Perl/Ruby/PHP development in it. Other people at my office that have done .NET stuff swear by VS 2005 and 2008. There's one guy that uses VIM in Windows for Java but we look at him funny :P

link|flag
vote up 1 vote down

Dude.

Emacs is an IDE, with a bigger "I" than anyone else.

link|flag
vote up 12 vote down

For Java I always use an IDE.

For JavaScript, HTML, CSS I am quite happy with a text editor (EditPlus) as long as I can access some reference information online easily.

I did used to use HomeSite for HTML and the code completion and suggestion features were useful, but I guess I know HTML well enough now that I don't feel like I "need" those features.

With Java you're dealing with more interactions between a variety of classes so in my experience code completion, suggestion, refactoring tools, etc. are a big help.

I imagine it's going to get that way with JavaScript development (in general and for me) over the next few years. IDE vendors are working to improve their JavaScript support so I wouldn't be surprised if I dropped EditPlus in favour of Eclipse for JavaScript at some point in the future.

link|flag
show 2 more comments
1 2 next

Your Answer

Get an OpenID
or

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