What is your favorite IDE for Perl development and why?
Here are the choices so far:
Vim
EPIC +
UltraEdit
VIM
TextMate
E
Komodo
Emacs
TextPad
Padre
XEmacs
WordPad
Jedit
Nedit
SlickEdit
Cream
Trinity
MacVim
|
4
|
|
|
|
|
|
Larry Wall uses something called |
|||
|
|
|
|
Kate in Linux Crimson Editor in Windows |
|||
|
|
|
|
I use ScriptDev, you can find out and download it from http://www.scriptdevelop.com.
|
|||
|
|
|
|
Enginsite Perl Editor lite, because it's free, load fast on my old P4 system, and has function listing, plus i can run it straight from this ide :) |
|||
|
|
|
|
http://sourceforge.net/projects/open-perl-ide/ - What about this? |
|||
|
|
I am constantly coding in different languages and different environments, so it is jEdit for me, and failing that I use kate, notepad++, gvim, vim or xemacs. |
|||
|
|
|
|
I find that if I'm working in Perl, a worthwhile command line along side my editor of choice is a must have. I work primarily in Linux when I can so bash is readily available but if I'm in Windows, I make sure to install Cygwin. |
|||
|
|
|
|
Emacs. I always prefer emacs. |
|||
|
|
Vim is available on many platforms, and it makes a good editor for writing Perl; however, some customization can make it even better.
-steve p.s. if you're on OS X, don't use the clunky old Carbon gvim that you get from vim.org. MacVim is a Cocoa port that not only replicates the functionality of stock gvim but adds additional features such as application integration and full-screen editing. |
|||
|
|
I prefer SlickEdit. It does very well at the syntax highlighting and formatting. I love it's interface for editing multiple files at the same time, and it's ftp/sftp functionality is a must have for web development on a remote server. |
|||
|
|
|
|
There is no one single best tool for Perl development, so let me describe a few, I usually recommend when teaching Perl: Linux, Unix, BSDPeople using Linux, Unix, BSD or similar platform usually use either something from the vi family or emacs. They both have Perl specific extension. Devel::PerlySense is an additional extension to emacs you should check out. Both families have versions that run on MS Windows as well, but most most people on those platforms go with other options. There are also several less complex editors such as gedit, NEdit, jEdit and pico. MS WindowsOn MS Windows there are too, plenty of free and good editors such as Crimson Editor, Notepad++ There is Textpad which costs a little money and Multi-Edit which costs a lot. Both Emacs and Gvim can be used on MS Windows but I'd only recommend them for people who are already familiar with these editors. AppleFor Apple the usual choice is TextMate. Platform independent IDEsThere are two platform independent IDEs:
Unfortunately both IDEs are quite heavy and the learning curve is steep. If you are already familiar with Eclipse then I think that is a good choice. Otherwise you might spend too much time learning the tool instead of learning Perl. It might pay off for you but I don't have time for that during classes. Most of the commercial editors and IDEs also support Perl but only as an editor. AFAIK none of them has special Perl support such as integration with the documentation, built in debugger or refactoring support. Padre, the Perl IDELastly I'd like to mention Padre, the Perl IDE that I have been writing. This is a Perl editor written in Perl using wxWidgets. It is platform independent and free. Its aim is to provide a good framework for starting to write Perl code but also to provide refactoring tools and a framework to develop large applications in Perl. There is also a reference table of Perl Development Tools on PerlMonks you should check out. Personal preferenceAs for my personal preference: I have been using vim and gvim on both Linux and Windows for several years. Recently I decided I'd like to create an IDE that is friendly for new Perl developers even on Windows so I started to write Padre. I am still more comfortable with vi but I am starting to get used to it. Besides, I am going to add a vi-mode with at least those features I miss. PollIn October 2009 I ran a poll asking Which editor(s) or IDE(s) are you using for Perl development?. vi, emacs and Ultra Edit came out at the top of the list. |
||||
|
|
|
I like Komodo Edit. The basic editor is free, works on Windows and Linux, and has syntax highlighting. |
|||
|
|
|
|
I used to use NEdit, which has some cool feature like mass indenting. |
|||
|
|
|
|
Notepad++ for its sheer simplicity and basic features like syntax highlighting, block commenting etc. |
|||
|
|
|
|
I use EPIC (Eclipse) for stepping and debugging and the like, but I find that jEdit is indispensable for really short testing cycles, especially on remote machines. I find jEdit to be the most script-able editor that I've come across. As such I can test my perl snippets without all that asking me to save the file that so many editors do. Using the Text Filter plugin, I can dump the current buffer to perl input as a script and get the output back as a new buffer. |
|||
|
|
|
|
WordPad what else? :) |
|||
|
|
|
|
There is a rather comprehensive table of Perl Development Tools on PerlMonks. If you already use Emacs, please give Devel::PerlySense a go. Helps with:
Works on Windows and Unix. Even without Devel::PerlySense, Emacs already has syntax highlighting and indentation, a visual frontend to the Perl debugger, really nice integration with your version control system, ctags, the best diff/merge feature I've ever used, remote editing, etc. etc. So it's a quite capable package. I'm not encouraging you to switch to Emacs or anything (it's got quite a daunting learning curve), but if you already use Emacs, make sure you explore all the brilliant tools it has accumulated over the years. Well, decades. |
|||
|
|
|
|
For IDE-oriented work, I use EPIC in Eclipse but find it to be aggravating at times. But I don't have the spare cycles to contribute to the project, so I don't rattle the developer's cage with complaints (I do try to report actual bugs if/when I find them). Most of the time, I develop Perl in XEmacs, as it's cperl-mode is (IMHO) the best parser of Perl outside of Perl. |
|||
|
|
|
|
I'm using Vim too. Here's my vim configuration. |
|||
|
|
|
|
Although it may not yet be ready for day-to-day use, Padre looks very promising and is growing rapidly. EDIT (10 month later). Padre is now definitely ready for day-to-day use. You can now call it a Perl IDE without blushing. |
|||
|
|
|
|
Perl does not really lend itself to having an IDE as it is so dynamic. Many of the tools you'd expect (like method name completion, argument hinting, refactoring, etc) can't be easily or reliably implemented as it is not possible for the IDE to parse and understand the code. With this in mind Perl must form part of the IDE, so what I use is the TextMate editor next to a shell where I run the code and with a browser window open on http://search.cpan.org for reference. TextMate's searching and scriptability make it ideal for Perl. The lack of IDE support has been addressed in many ways. Notably if you are developing web apps the Catalyst framework comes with excellent debugging tools, which provide many of the features you'd expect in the IDE. The standardized way of testing using Test::More etc also help greatly. I believe that this is the way that many programmers using highly dynamic scripting languages work, be it Python, Ruby, Perl or the others. |
|||
|
|
|
|
Komodo is worth the money if you're working on a large project. |
|||
|
|
|
|
vim, although I've been tempted at times to go to EPIC, although the nature of the projects I work on make it difficult to install the dependencies locally, somewhat negating the advantage of EPIC. |
|||
|
|
|
|
EPIC for Eclipse is great. I also use TextPad, although not for really big projects, and it takes some configuring. TextPad 4 is reportedly much better than version 5, but I've only tried 4. |
|||
|
|
|
|
Emacs. Mostly because I don't do really big projects in Perl. Also, I find screen to be helpful for looking up documentation etc. |
|||
|
|
|
|
I randomly used Komodo Edit (a free cross-platform editor from ActiveState). There is a commercial version of the software (Komodo IDE) that is actually more complete than it. But at the end, I always fall on the simple code editor solution. In my case TextMate. |
|||
|
|
|
|
E (http://www.e-texteditor.com/) is a port of textmate for windows. I like it, but you have to be willing to run cygwin for it to work really well. Otherwise, EPIC can be good, or just blast it out in emacs. |
|||
|
|
|
|
Other than vim, of course, I like Komodo. It organizes your files into projects, like other IDEs, and helps with auto complete, etc, in addition to syntax highlighting. |
|||
|
|
|
|
Vim, what else? |
||||
|
|
|
I liked EPIC for eclipse and UltraEdit. Those are my 2 favorite. |
||||
|