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 31 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 3 more comments
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 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
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 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 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 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
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 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 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 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 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 1 vote down

Dude.

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 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

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 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 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

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 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 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

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

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

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

link|flag
vote up 0 vote down

IDE, because it's also a text editor.

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

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 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

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

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
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.