summaryrefslogtreecommitdiff
path: root/doc/ratpoisonrc-mode.el
blob: 4e9849f8d77cb2b21e827cd7d359ccfa7dd15593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
;;; ratpoisonrc-mode.el --- .ratpoisonrc syntax-highlighting mode for Emacs

;; Author: Gergely Nagy <algernon@debian.org>
;; Maintainer: Gergely Nagy
;; Version: 0.1
;; Keywords: faces, ratpoison, X
;; CVS Id: $Id: ratpoisonrc-mode.el,v 1.1 2001/09/06 20:09:50 algernon Exp $
;; Last updated: <2001/09/06 17:57:24 algernon>

;; This file is NOT part of GNU Emacs.

;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public
;; License along with this program; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
;; MA 02111-1307 USA

;;; Commentary:
;;
;; This file provides a major mode for editing .ratpoisonrc files. At
;; them moment it only provides syntax-highlighting.

;;; Todo:
;; - auto-completion of commands
;; - more intelligent highlighting (eg: highlight arguments)
;; - syntax checking

(define-generic-mode 'ratpoisonrc-mode
     (list ?#)
        (list
	 "abort"
	 "next"
	 "prev"
	 "exec"
	 "select"
	 "colon"
	 "kill"
	 "delete"
	 "other"
	 "windows"
	 "title"
	 "clock"
	 "maximize"
	 "newwm"
	 "generate"
	 "version"
	 "bind"
	 "unbind"
	 "source"
	 "escape"
	 "echo"
	 "split"
	 "hsplit"
	 "vsplit"
	 "focus"
	 "only"
	 "remove"
	 "banish"
	 "curframe"
	 "help"
	 "quit"
	 "number"
	 "rudeness"
	 )
	nil
	(list "\\.ratpoisonrc\\'")
	nil
	"Generic mode for ratpoison configuration files.")

(provide 'ratpoison-mode)