IDE or Text Editor? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:44:33Z http://stackoverflow.com/feeds/question/136056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/136056/ide-or-text-editor 14 IDE or Text Editor? Pablo Fernandez 2008-09-25T20:58:43Z 2009-11-13T21:04:56Z <p>Do you like to code using an IDE (like Eclipse or Visual Studio), or you prefer simply a text editor (like Vim) ? </p> <p>I heard strong arguments against IDE's (specially from dynamic language programmers) but I really love Eclipse.</p> <p>Which type do you prefer? Why? If it depends on the language please say so.</p> <p>Thanks</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136087#136087 5 Answer by WolfmanDragon for IDE or Text Editor? WolfmanDragon 2008-09-25T21:01:32Z 2008-09-25T21:01:32Z <p>Learning to code in a text editor makes for a better programmer, it makes one actually learn how the language works.<br /> Daily coding in a text editor is wasting someones money, hopefully not yours.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136089#136089 31 Answer by Leanan for IDE or Text Editor? Leanan 2008-09-25T21:01:35Z 2008-09-25T21:01:35Z <p>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.</p> <p>Vim takes a bit of learning, but once you learn even just the basics, it's great.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136096#136096 3 Answer by mgb for IDE or Text Editor? mgb 2008-09-25T21:01:57Z 2008-09-25T21:01:57Z <p>A good ide keeps out of the way while you are editing text.<br /> 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.</p> <p>For debugging they are invaluable, sorry you aren't dragging me back to gdb and a telnet session.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136108#136108 0 Answer by Crad for IDE or Text Editor? Crad 2008-09-25T21:03:11Z 2008-09-25T21:03:11Z <p>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. </p> <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136115#136115 21 Answer by Sergio Acosta for IDE or Text Editor? Sergio Acosta 2008-09-25T21:04:07Z 2008-09-25T21:04:07Z <p>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.</p> <p>I guess it is because in both cases, <strong>the tools and the development platform were designed to work well together</strong>. I mean, .NET was not designed to be 'comfortable' without Visual Studio.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136116#136116 0 Answer by David Moore for IDE or Text Editor? David Moore 2008-09-25T21:04:08Z 2008-09-25T21:04:08Z <p>IDEs add so much value to the development process. For me it's Eclipse (Zend for Eclipse) for PHP and Visual Studio for .NET</p> <p>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.</p> <p>For me, that's Scintilla Text Editor</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136119#136119 0 Answer by Charles Graham for IDE or Text Editor? Charles Graham 2008-09-25T21:04:11Z 2008-09-25T21:04:11Z <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136130#136130 2 Answer by benrick for IDE or Text Editor? benrick 2008-09-25T21:05:06Z 2008-09-25T21:05:06Z <p>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. </p> <p>Most of the time I would rather use an IDE. I mainly use Visual Studio. Using IDEs speeds up development a great deal.</p> <p>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.</p> <p>Text Editors I use: vim, notepad++, notepad IDEs I use: Visual Studio</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136137#136137 0 Answer by bhinks for IDE or Text Editor? bhinks 2008-09-25T21:05:52Z 2008-09-25T21:05:52Z <p>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.</p> <p>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</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136148#136148 1 Answer by dacracot for IDE or Text Editor? dacracot 2008-09-25T21:06:55Z 2008-09-25T21:06:55Z <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136151#136151 5 Answer by Fossmo for IDE or Text Editor? Fossmo 2008-09-25T21:07:34Z 2008-09-25T21:07:34Z <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136170#136170 2 Answer by Big Dave Diode for IDE or Text Editor? Big Dave Diode 2008-09-25T21:11:22Z 2008-09-25T21:11:22Z <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136171#136171 9 Answer by dr_pepper for IDE or Text Editor? dr_pepper 2008-09-25T21:11:25Z 2008-09-25T21:11:25Z <p>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:</p> <p><a href="http://stackoverflow.com/questions/63421/using-emacs-as-an-ide">using-emacs-as-an-ide</a></p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136179#136179 12 Answer by wrumsby for IDE or Text Editor? wrumsby 2008-09-25T21:12:34Z 2008-09-25T21:12:34Z <p>For Java I always use an IDE.</p> <p>For JavaScript, HTML, CSS I am quite happy with a text editor (EditPlus) as long as I can access some reference information online easily.</p> <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136187#136187 1 Answer by Ben Collins for IDE or Text Editor? Ben Collins 2008-09-25T21:13:58Z 2008-09-25T21:13:58Z <p>Dude.</p> <p>Emacs <em>is</em> an IDE, with a bigger "I" than anyone else.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136209#136209 6 Answer by MattC for IDE or Text Editor? MattC 2008-09-25T21:18:16Z 2008-09-25T21:18:16Z <p>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.</p> <p>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</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136241#136241 0 Answer by epatel for IDE or Text Editor? epatel 2008-09-25T21:23:20Z 2008-09-25T21:23:20Z <p>If you learn the <em>editor</em> 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 <em>basic</em> 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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136341#136341 0 Answer by corey goldberg for IDE or Text Editor? corey goldberg 2008-09-25T21:38:19Z 2008-09-25T21:38:19Z <p>depends on the language.</p> <p>For dynamic languages, I tend to use a simple editor. For writing Perl and Python code, I use SciTE.</p> <p>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.</p> <p>Kinda interesting.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/136391#136391 0 Answer by kineas for IDE or Text Editor? kineas 2008-09-25T21:47:24Z 2008-09-25T21:47:24Z <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/137283#137283 0 Answer by jussij for IDE or Text Editor? jussij 2008-09-26T01:36:22Z 2008-09-26T01:36:22Z <p>If you learn to develop without an IDE, you’ll also have no trouble developing using an IDE. But that is <em>not always</em> the situation for the reserve case.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/138711#138711 0 Answer by Johan Parent for IDE or Text Editor? Johan Parent 2008-09-26T10:55:41Z 2008-09-26T10:55:41Z <p>Ever tried the Delphi-IDE? Never anything else! It's simply the best.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/139310#139310 8 Answer by Harald Scheirich for IDE or Text Editor? Harald Scheirich 2008-09-26T12:55:31Z 2008-09-26T12:55:31Z <p>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. </p> <ul> <li><p><strong>Code Completion</strong>, instead of digging through documentation you should be able to tab your way through methods and save yourself a lot of writing</p></li> <li><p><strong>Refactoring</strong>, 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)</p></li> <li><p><strong>Syntax Checking</strong>, helping you out with writing correct code while you type</p></li> </ul> <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/139405#139405 0 Answer by Imran for IDE or Text Editor? Imran 2008-09-26T13:10:33Z 2008-09-26T13:10:33Z <p>IDE, because it's also a text editor.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/139564#139564 0 Answer by Odilon Redo for IDE or Text Editor? Odilon Redo 2008-09-26T13:40:28Z 2008-09-26T13:40:28Z <p>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 <a href="http://www.aptana.com/" rel="nofollow">Aptana</a> to navigate through my functions.</p> <p>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. </p> <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/170132#170132 -2 Answer by Omar Abid for IDE or Text Editor? Omar Abid 2008-10-04T11:02:16Z 2008-10-04T11:02:16Z <p>like the IDE that sure, but sometimes it SUCKS</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/170157#170157 0 Answer by Sklivvz for IDE or Text Editor? Sklivvz 2008-10-04T11:16:09Z 2008-10-04T11:16:09Z <p>It depends on what I am doing:</p> <p><strong>Code Generation, Refactoring</strong><br /> I use IDEs like Visual Studio + Resharper, Eclipse, MonoDevelop or SharpDevelop.</p> <p><strong>Heavy Code Writing, real-world Regex replacements, advanced text editing</strong><br /> I use advanced editors like Vim or UltraEdit. They are far superior to the IDE ones.</p> <p><strong>Generating tons of repeated lines</strong><br /> Like INSERTs for a set of data, etc... I use Gnumeric or Excel to generate code and then copy and paste.</p> <p><strong>Simple test programs</strong><br /> Either an editor or SnippetCompiler</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/214873#214873 0 Answer by Nazgob for IDE or Text Editor? Nazgob 2008-10-18T10:40:16Z 2008-10-18T10:40:16Z <p>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 :)</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/214907#214907 0 Answer by shyamsundar for IDE or Text Editor? shyamsundar 2008-10-18T11:12:17Z 2008-10-18T11:12:17Z <p>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</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/249417#249417 0 Answer by for IDE or Text Editor? 2008-10-30T06:32:51Z 2008-10-30T06:32:51Z <p>Instead of using VS.NET for testing some pieces of code Snippet Compiler is the best <a href="http://tech.wowkhmer.com/post/2008/10/29/Compile-and-Test-NET-Code-Snippet-Without-Saving.aspx" rel="nofollow">http://tech.wowkhmer.com/post/2008/10/29/Compile-and-Test-NET-Code-Snippet-Without-Saving.aspx</a></p> http://stackoverflow.com/questions/136056/ide-or-text-editor/285105#285105 0 Answer by neonturtle for IDE or Text Editor? neonturtle 2008-11-12T19:48:29Z 2008-11-12T19:48:29Z <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/285121#285121 0 Answer by picardo for IDE or Text Editor? picardo 2008-11-12T19:53:29Z 2008-11-12T19:53:29Z <p>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++.</p> <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/285122#285122 1 Answer by j0rd4n for IDE or Text Editor? j0rd4n 2008-11-12T19:53:55Z 2008-11-12T19:53:55Z <p>Hands down: ViEmu for Visual Studio Visual Studio + VIM = ViEmu</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/285156#285156 0 Answer by tomas for IDE or Text Editor? tomas 2008-11-12T20:05:49Z 2008-11-12T20:05:49Z <p>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. </p> <p>And of course; Notepad++ to a little bit of everything</p> <p><a href="http://www.ph.unimelb.edu.au/~ssk/vim/howto.html" rel="nofollow">Good, old VIM howto</a></p> http://stackoverflow.com/questions/136056/ide-or-text-editor/343960#343960 0 Answer by John J for IDE or Text Editor? John J 2008-12-05T14:21:09Z 2008-12-05T14:21:09Z <p>The VS.PHP addon makes Visual Studio an excellent IDE for PHP. For Java Netbeans which also includes good PHP support.</p> <p>For Text Editors... VIM, InType</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/621050#621050 0 Answer by Bwing for IDE or Text Editor? Bwing 2009-03-07T00:53:39Z 2009-03-07T00:53:39Z <p>Give me an IDE anyday, visual studio or eclipse</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/622105#622105 0 Answer by Steve Melnikoff for IDE or Text Editor? Steve Melnikoff 2009-03-07T16:43:42Z 2009-03-07T16:43:42Z <p>For embedded software, a lot of compiler producers supply their own IDE, with predictably variable results.</p> <p>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.</p> <p>One day, I'll find the time to learn Vim...</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/1089795#1089795 0 Answer by Nathan Campos for IDE or Text Editor? Nathan Campos 2009-07-07T00:13:52Z 2009-07-07T00:13:52Z <p>Hello,</p> <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/1731198#1731198 0 Answer by mizipzor for IDE or Text Editor? mizipzor 2009-11-13T19:04:57Z 2009-11-13T19:04:57Z <p>You might find <a href="http://stackoverflow.com/questions/208193/why-should-i-use-an-ide">this question</a> relevant.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/1731324#1731324 0 Answer by tnm for IDE or Text Editor? tnm 2009-11-13T19:25:01Z 2009-11-13T20:43:58Z <p>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.</p> <p>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.</p> <p>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.</p> <p>In the end, though, the short answer remains the truth: it depends. Find what you're comfortable with, and go for it.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/1731360#1731360 1 Answer by BalusC for IDE or Text Editor? BalusC 2009-11-13T19:29:26Z 2009-11-13T19:29:26Z <p>IDE? Texteditor? Just CLI.</p> <pre> 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:\>_ </pre> http://stackoverflow.com/questions/136056/ide-or-text-editor/1731811#1731811 0 Answer by Dean J for IDE or Text Editor? Dean J 2009-11-13T20:46:52Z 2009-11-13T20:46:52Z <p>If you're doing anything complex, IDE. If you're doing something relatively simple - one file, for example - text editor.</p> <p>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.</p> http://stackoverflow.com/questions/136056/ide-or-text-editor/1731919#1731919 0 Answer by Andy Monis for IDE or Text Editor? Andy Monis 2009-11-13T21:04:56Z 2009-11-13T21:04:56Z <p>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.</p>