]> git.donarmstrong.com Git - emacs.git/blob - .emacs_abbrev_def
simplify latex font handling; try to figure out how to hilight DLA et al properly
[emacs.git] / .emacs_abbrev_def
1 ;; -*- mode: emacs-lisp-mode -*- 
2 ;;
3 ;; Each Item has a form `(ABBREVNAME EXPANSION [HOOK] [PROPS...])'.
4 ;;
5 (define-abbrev-table 'global-abbrev-table
6   '(
7     ("$$DDNFU" "" (lambda nil 
8                     (insert-file-contents
9                      "/home/don/lib/templates/email/debbugs-notforus"
10                      nil)) 0)
11     ("$$DDMORE" "" (lambda nil 
12                     (insert-file-contents
13                      "/home/don/lib/templates/email/debbugs-moreinfo"
14                      nil)) 0)
15     ("$$LMUNSUB" "" (lambda nil 
16                     (insert-file-contents
17                      "/home/don/lib/templates/email/debian-unsub"
18                      nil)) 0)
19     ("$$PERLDOC" "" (lambda nil
20                       (insert-file-contents
21                        "/home/don/lib/templates/perl_function_documentation"
22                        nil)) 0)
23     ("$$PERLSCRIPT" "" (lambda nil
24                          (insert-file-contents
25                           "/home/don/lib/templates/perl_script"
26                           nil)) 0)
27     ("teh" "the" nil 0)
28     ))
29
30 (define-abbrev-table 'latex-mode-abbrev-table
31   '(
32     ("SNP" "\\ac{SNP}" nil 0)
33     ("SNPs" "\\acp{SNP}" nil 0)
34     ))