in reply to Re^4: IDE for perl
in thread IDE for perl

I know the basics of emacs, but I prefer first nedit, and second vim. However, I'd still like to know : how do you use Sepia from within emacs?

Replies are listed 'Best First'.
Re^6: IDE for perl
by educated_foo (Vicar) on Mar 08, 2007 at 14:59 UTC
    The README has some information, but basically, you need to put *.el from the distribution in emacs' load-path, then do
    M-x load-library RET sepia RET M-x sepia-init RET M-x sepia-rebuild RET
    As for what it does beyond eshell and cperl-mode, the main features are tab-completion of functions and variables, an interactive prompt, and cross-referencing (to find definitions, callers, callees, etc.).
      That's great. It would be quite easy to adapt this to any scriptable editor (like Vim or Nedit).