renormalist / emacs-pod-mode
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Feb 14 16:41:22 -0800 2009 | |
| |
ChangeLog | Sat Feb 14 15:02:01 -0800 2009 | |
| |
META.yml | Sat Feb 14 15:02:01 -0800 2009 | |
| |
Makefile | Tue May 12 00:30:56 -0700 2009 | |
| |
README | Tue May 12 00:30:56 -0700 2009 | |
| |
example.pod | Sun Sep 04 06:02:41 -0700 2005 | |
| |
pod-mode.el | Thu Oct 01 07:31:39 -0700 2009 |
README
pod-mode.el - A major mode for editing .pod-files in (X)Emacs
POD is the Plain Old Documentation format of Perl.
This mode mainly defines a grammar for syntax highlighting.
-------------------------------------------------------------
Usage:
Put "pod-mode.el" into your load-path and the following
into your ~/.emacs:
(require 'pod-mode)
To associate pod-mode with .pod files add the following
into your ~/.emacs
(setq auto-mode-alist
(append auto-mode-alist
'(("\\.pod$" . pod-mode))))
To automatically turn on font-lock-mode add the following
into your ~/.emacs
(add-hook 'pod-mode-hook 'font-lock-mode)
-------------------------------------------------------------
Author: Steffen Schwigon <ss5@renormalist.net>
License: GPL
Tested: i386-linux with XEmacs 21.4
i386-linux with GNU Emacs 21.2.1
i386-windows-w2k with XEmacs 21.4
This mode is built with help of the "Emacs language mode creation
tutorial" written by Scott Andrew Borton, now hosted at
http://renormalist.net/cgi-bin/twiki/view/Renormalist/EmacsLanguageModeCreationTutorial
I'm interested in comments/enhancements/bugfixes.
