Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Desparately seeking a bilingual vim/Emacs expert

by InfiniteLoop (Hermit)
on Mar 23, 2005 at 08:12 UTC ( [id://441708]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://441708]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (8)
As of 2024-04-23 11:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found