renormalist / emacs-pod-mode

Emacs syntax highlighting for Perl POD

This URL has Read+Write access

name age message
file .gitignore Sat Feb 14 16:41:22 -0800 2009 - svnignore -> gitignore (Wow, we once started ... [renormalist]
file ChangeLog Sat Feb 14 15:02:01 -0800 2009 - more meta fiddling, although it still ignores... [ss5]
file META.yml Sat Feb 14 15:02:01 -0800 2009 - more meta fiddling, although it still ignores... [ss5]
file Makefile Tue May 12 00:30:56 -0700 2009 distribution maintenance [renormalist]
file README Tue May 12 00:30:56 -0700 2009 distribution maintenance [renormalist]
file example.pod Sun Sep 04 06:02:41 -0700 2005 backup git-svn-id: https://svn.renormalist.ne... [ss5]
file pod-mode.el Thu Oct 01 07:31:39 -0700 2009 (c)++ [renormalist]
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.