NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
There is.... (Score:2)
The very best (Score:1)
Re:The very best (Score:1)
Oh no, another holy war!!!
Other options (Score:1)
I know there is vim for windows, as emacs (or xemacs). Meanwhile, I also know that some people have problems working with them (can't understand, but it is true). For those, IDE like eclipse can be good (don't know, never used), but some other options, like Komodo are nice. I know Komodo is not free (is eclipse free?), but it includes very nice features.
Re:Other options (Score:1)
I honestly can't see what I could do with things such as Eclipse that I can't do with Vim... maybe I'm missing something, but I'm happy the way I am :-)
And don't bother saying (this is not directed to ambs, but to everybody else) if I was coding Java I would need something else rather then Vim, because I w
IDE schmIDE (Score:1)
Re:IDE schmIDE (Score:1)
IDE vs Editor (Score:2)
But, there are other features. Look at EPIC for example. You don't just get an editor, you also get a debugger and a regular expression plugin (where you can test regular expressions on the fly).
There are other things, too, like the outline view where I can see functions listed by name, and jump to them as needed (useful for large files). There are a ton of plugins (thou
Re:IDE vs Editor (Score:1)
Re:IDE vs Editor (Score:1)
Re:IDE vs Editor (Score:1)
As for indenting, just one TAB does the trick in the cperl-mode that ships with Emacsen.
Re:IDE vs Editor (Score:1)
Re:IDE vs Editor (Score:1)
folding (Score:1)
I was aware that Vim had folding, but I've never looked into it until now. It looks like there's 'manual' folding or 'marker' folding. Which do you use?
In the IDE for the GUI (not perl) we use at work, there are diamond-shaped dots preceeding each line to double-click on to fold or unfold an indentation level. It's alright except that some programmers hide 100's of lines in innocent-looking if-else-blocks or loops, and it's annoying when you unfold those blocks to look for something (or while debugging).
A
Re:folding (Score:1)
If you're asking me, know that I usually don't use any kind of folding. I just happen to know about it :-)
However, I do believe there are some more folding methods... let's see... :-| guess I'll have
to check :-)
vim -c :help foldingshows 'manual', 'indent', 'expr', 'syntax', 'diff' and 'marker' folding... I wonder what these are...Somebody else out there using vim's folding capabilities?