in reply to Re: Features missing in perl IDEs?
in thread Features missing in perl IDEs?

Just curiously, what do you want to do by programming the IDE? Short cuts? Macros?

Replies are listed 'Best First'.
Re^3: Features missing in perl IDEs?
by educated_foo (Vicar) on Jun 17, 2005 at 12:53 UTC
    Here's an example. The other day I needed to number the lines of some code examples in notes I was writing up. Not a built-in editor feature, but a few minutes' hacking in the One True Editor yielded:
    (defun my-number-region (beg end) (interactive "r") (save-excursion (let ((end (progn (goto-char end) (beginning-of-line 2) (point-mar +ker)))) (goto-char beg) (beginning-of-line) (loop for i = 1 then (1+ i) while (< (point) (marker-position end)) do (progn (insert (format "%-6d" i)) (beginning-of-line 2))))))
    Being able to do this sort of simple customization without knowing about "plugin architectures" and what-not is what I think Emacs got fundamentally right, and is why I never have the patience for Eclipse.