I use vile, with the following configuration file:
source /usr/local/share/vile/filters.rc define-submode perl shiftwidth 4 define-submode java shiftwidth 4 bind-key execute-named-command ; bind-key repeat-char-scan : bind-key down-page g bind-key previous-page v bind-key next-window ^I bind-key undo-changes-backward u bind-key redo-changes-forward U unbind-key q set autoindent set nobackspacelimit ; set cmode ; set c-suffixes \\.\\(\\([Cchis]\\)\\|CC\\|cc\\|cpp\\|cxx\\|nl\\|hxx\ +\|scm\\)$ ; set c-shiftwidth 4 set csw 4 ; set c-tabstop 8 ; set c-preamble "^#\s*!\s*\/.*perl" set noerrorbells set linewrap set magic set printing-low 160 set printing-high 255 set report 1 set ruler set showmatch set showmode set notabinsert set undolimit 0 set nowarn-rename 1 store-macro goto-beginning-of-file append-string "#!/usr/bin/perl\n\n" append-string "use strict;\n" append-string "use warnings;\n" append-string "no warnings qw /syntax/;\n" set-mode "perlmode" position-window b open-line-below-and-append-chars ~endm 2 store-macro save-file shell-command &cat "perl " $cfilname ~endm 3 store-macro save-file shell-command &cat "perl -c " $cfilname ~endm bind-key execute-macro-1 ^A-p bind-key execute-macro-2 ^A-r bind-key execute-macro-3 ^A-c

That's all I need for an IDE. ;-)

Abigail


In reply to Re: Perl IDE by Abigail-II
in thread Perl IDE by 23r0

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.