http://www.perlmonks.org?node_id=441708


in reply to Desparately seeking a bilingual vim/Emacs expert

Try the abbrev-mode. Here is the sample code that you can stick in an .emacs file, which enables the abbrev-mode and sets up some global abbreviations:
(abbrev-mode 1) (define-abbrev-table 'global-abbrev-table '( ("dbg" "use Data::Dumper qw( Dumper );^Mwarn Dumper[];^[hi" nil 1) ))
I found that it is better to add a hook to the preferred editing made, to enable abbreviation mode, like:
(add-hook 'text-mode-hook (lambda () (abbrev-mode 1)))
This enables the abbreviation mode while editing text files. Also you can enbale the abbrev mode by typing: M-x abbrev-mode
For the pre-fab documents, try using auto-insert. This mode can work on the file extensions, this link gives more info

For tab stops etc, use cperl-mode.

Replies are listed 'Best First'.
Re^2: Desparately seeking a bilingual vim/Emacs expert
by TheDamian (Vicar) on Mar 25, 2005 at 19:01 UTC
    That's really helpful. Thank-you!

    Damian