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

I personally prefer to use emacs as an IDE. It takes alot of overhead to learn, but if you learn the keystrokes you will accomplish your tasks faster with all of the tools emacs has. I can compile, grep, autocomplete, debug visually, and jump to any function my cursor is on. Combine that with the emacs text editing capabilities and it is an awesome tool. Check this out on how to customize emacs:

using-emacs-as-an-ide

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

I use emacs almost exclusively. I find IDEs tend to be slow and very mouse-oriented, not at all what I want when I'm coding.

link|flag
show 1 more comment
vote up 5 vote down

I prefer to use a IDE like VS.NET. The reason for this is that it increases my productivity a lot. Especially when using a add in like ReSharper from Jetbrains. Using this combination I get a lot of code generated. Code that is repetitive to write. It also helps with a lot of other stuff too, of course.

link|flag
vote up 1 vote down

I use a text editor and a command shell. The reason being that I can use the exact application build process for my sandbox as will occur in QA and production, no change. This makes for more stable deployments.

link|flag
vote up 0 vote down

For me it depends on where I'm coding. When I'm at work I use Eclipse so it's easier for me to work with our SVN repository.

When I'm at home and working on my own projects, I prefer to use lightweight tools and I use Notepad++ for just about everything

link|flag
vote up 2 vote down

For scripting I prefer to use text editors. This is because scripts tend to remain much smaller and are a lot less complicated. I also have less need to integrate management of files when working with scripts. Build processes are also unnecessary.

Most of the time I would rather use an IDE. I mainly use Visual Studio. Using IDEs speeds up development a great deal.

I also believe there is great benefit to using text editors sometimes with any language, because it can help you better learn a language. A lot of the "help" one receives when using an IDE can cause a programmer to not know the language very well, because the IDE does too much work for them.

Text Editors I use: vim, notepad++, notepad IDEs I use: Visual Studio

link|flag
vote up 0 vote down

Use an IDE. It will save you time. But sometimes, when IDE's act stpid, like past versions of visual studio did with automatically formatting aspx files, then going out into a pure text editor is almost a must. But this usually isn't the case for code files.

link|flag
vote up 0 vote down

IDEs add so much value to the development process. For me it's Eclipse (Zend for Eclipse) for PHP and Visual Studio for .NET

However I'm sure everyone has a fast, light text editor with coder features to it for just opening and maybe editing source files without loading an IDE.

For me, that's Scintilla Text Editor

link|flag
vote up 21 vote down

I think it depends on the language. I couldn't imagine developing on .NET without Visual Studio, but when it comes to develop in Python, for example, I cannot imagine using anything else than my favorite text editor (Vim) and the command line. I have tried some Python IDEs like IDLE and Komodo, but I always return to the basic tools.

I guess it is because in both cases, the tools and the development platform were designed to work well together. I mean, .NET was not designed to be 'comfortable' without Visual Studio.

link|flag
1  
Same here. I'd basically kill myself if I had to do .net dev without Intellisense. For Python, I just use vim or Textmate. – Dana Sep 25 '08 at 21:16
1  
It's worth noting you can have a vim-like editing mode in Visual Studio. Never used it much myself, though. – Benjamin Oakes Nov 13 at 19:28
vote up 0 vote down

Traditionally, I've been a text-editor fan, vim being the editor of choice. When I moved from Linux on the desktop to a Mac, I started using various IDE's including Eclipse, as I like the visual organization and overall usefulness of an IDE. Recently I stumbled across Coda and for my environment it works great. It's much lighter weight than Eclipse and supports all the languages I am banging about in.

Ultimately for me it comes down to if I am developing on a remote box, in which case I am in VIM and if I am developing on my desktop, then it's Coda.

link|flag
vote up 3 vote down

A good ide keeps out of the way while you are editing text.
Command line tools are necessary for automated builds etc in addition to the IDE but there is no value in me remembering a bunch of linker flags for every compile.

For debugging they are invaluable, sorry you aren't dragging me back to gdb and a telnet session.

link|flag
vote up 5 vote down

Learning to code in a text editor makes for a better programmer, it makes one actually learn how the language works.
Daily coding in a text editor is wasting someones money, hopefully not yours.

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.