annotate lisp/textmodes/conf-mode.el @ 94670:f4a69fedbd46

Switch to recommended form of GPLv3 permissions notice.
author Glenn Morris <rgm@gnu.org>
date Tue, 06 May 2008 04:33:14 +0000
parents a128a4284881
children a9dc0e7c3f2b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
1 ;;; conf-mode.el --- Simple major mode for editing conf/ini/properties files
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
2
79719
dc100f64b2b7 Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 79219
diff changeset
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
64969
3a43d3e9bb74 Fix copyright notice, list author.
Richard M. Stallman <rms@gnu.org>
parents: 64751
diff changeset
4
3a43d3e9bb74 Fix copyright notice, list author.
Richard M. Stallman <rms@gnu.org>
parents: 64751
diff changeset
5 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
6 ;; Keywords: conf ini windows java
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
7
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
8 ;; This file is part of GNU Emacs.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
9
94670
f4a69fedbd46 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93535
diff changeset
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
94670
f4a69fedbd46 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93535
diff changeset
12 ;; the Free Software Foundation, either version 3 of the License, or
f4a69fedbd46 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93535
diff changeset
13 ;; (at your option) any later version.
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
14
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
18 ;; GNU General Public License for more details.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
19
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
20 ;; You should have received a copy of the GNU General Public License
94670
f4a69fedbd46 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93535
diff changeset
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
22
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
23 ;;; Commentary:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
24 ;;
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
25 ;; This mode is designed to edit many similar varieties of Conf/Ini files and
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
26 ;; Java properties. It started out from Aurélien Tisné's ini-mode.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
27 ;; `conf-space-keywords' were inspired by Robert Fitzgerald's any-ini-mode.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
28
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
29
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
30 ;;; Code:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
31
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
32 (require 'newcomment)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
33
65261
5e6a52548deb (outline-heading-end-regexp): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents: 64969
diff changeset
34 (defvar outline-heading-end-regexp)
5e6a52548deb (outline-heading-end-regexp): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents: 64969
diff changeset
35
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
36 ;; Variables:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
37
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
38 (defgroup conf nil
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
39 "Configuration files."
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
40 :group 'data
59996
aac0a33f5772 Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents: 58694
diff changeset
41 :version "22.1")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
42
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
43 (defcustom conf-assignment-column 24
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
44 "Align assignments to this column by default with \\[conf-align-assignments].
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
45 If this number is negative, the `=' comes before the whitespace. Use 0 to
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
46 not align (only setting space according to `conf-assignment-space')."
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
47 :type 'integer
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
48 :group 'conf)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
49
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
50 (defcustom conf-javaprop-assignment-column 32
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
51 "Value for `conf-assignment-column' in Java properties buffers."
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
52 :type 'integer
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
53 :group 'conf)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
54
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
55 (defcustom conf-colon-assignment-column (- (abs conf-assignment-column))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
56 "Value for `conf-assignment-column' in Java properties buffers."
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
57 :type 'integer
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
58 :group 'conf)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
59
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
60 (defcustom conf-assignment-space t
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
61 "Put at least one space around assignments when aligning."
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
62 :type 'boolean
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
63 :group 'conf)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
64
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
65 (defcustom conf-colon-assignment-space nil
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
66 "Value for `conf-assignment-space' in colon style Conf mode buffers."
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
67 :type 'boolean
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
68 :group 'conf)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
69
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
70 (defvar conf-mode-map
93535
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
71 (let ((map (make-sparse-keymap))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
72 (menu-map (make-sparse-keymap)))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
73 (define-key map "\C-c\C-u" 'conf-unix-mode)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
74 (define-key map "\C-c\C-w" 'conf-windows-mode)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
75 (define-key map "\C-c\C-j" 'conf-javaprop-mode)
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
76 (define-key map "\C-c\C-s" 'conf-space-keywords)
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
77 (define-key map "\C-c " 'conf-space-keywords)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
78 (define-key map "\C-c\C-c" 'conf-colon-mode)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
79 (define-key map "\C-c:" 'conf-colon-mode)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
80 (define-key map "\C-c\C-x" 'conf-xdefaults-mode)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
81 (define-key map "\C-c\C-p" 'conf-ppd-mode)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
82 (define-key map "\C-c\C-q" 'conf-quote-normal)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
83 (define-key map "\C-c\"" 'conf-quote-normal)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
84 (define-key map "\C-c'" 'conf-quote-normal)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
85 (define-key map "\C-c\C-a" 'conf-align-assignments)
93535
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
86 (define-key map [menu-bar sh-script] (cons "Conf" menu-map))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
87 (define-key menu-map [conf-windows-mode]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
88 '(menu-item "Windows mode"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
89 conf-windows-mode
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
90 :help "Conf Mode starter for Windows style Conf files"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
91 :button (:radio . (eq major-mode 'conf-windows-mode))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
92 (define-key menu-map [conf-javaprop-mode]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
93 '(menu-item "Java properties mode"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
94 conf-javaprop-mode
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
95 :help "Conf Mode starter for Java properties files"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
96 :button (:radio . (eq major-mode 'conf-javaprop-mode))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
97 (define-key menu-map [conf-space-keywords]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
98 '(menu-item "Space keywords mode..."
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
99 conf-space-keywords
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
100 :help "Enter Conf Space mode using regexp KEYWORDS to match the keywords"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
101 :button (:radio . (eq major-mode 'conf-space-keywords))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
102 (define-key menu-map [conf-ppd-mode]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
103 '(menu-item "PPD mode"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
104 conf-ppd-mode
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
105 :help "Conf Mode starter for Adobe/CUPS PPD files"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
106 :button (:radio . (eq major-mode 'conf-ppd-mode))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
107 (define-key menu-map [conf-colon-mode]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
108 '(menu-item "Colon mode"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
109 conf-colon-mode
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
110 :help "Conf Mode starter for Colon files"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
111 :button (:radio . (eq major-mode 'conf-colon-mode))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
112 (define-key menu-map [conf-unix-mode]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
113 '(menu-item "Unix mode"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
114 conf-unix-mode
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
115 :help "Conf Mode starter for Unix style Conf files"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
116 :button (:radio . (eq major-mode 'conf-unix-mode))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
117 (define-key menu-map [conf-xdefaults-mode]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
118 '(menu-item "Xdefaults mode"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
119 conf-xdefaults-mode
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
120 :help "Conf Mode starter for Xdefaults files"
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
121 :button (:radio . (eq major-mode 'conf-xdefaults-mode))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
122 (define-key menu-map [c-s0] '("--"))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
123 (define-key menu-map [conf-quote-normal]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
124 '(menu-item "Set quote syntax normal" conf-quote-normal
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
125 :help "Set the syntax of \' and \" to punctuation"))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
126 (define-key menu-map [conf-align-assignments]
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
127 '(menu-item "Align assignments" conf-align-assignments
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
128 :help "Align assignments"))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
129 map)
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
130 "Local keymap for `conf-mode' buffers.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
131
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
132 (defvar conf-mode-syntax-table
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
133 (let ((table (make-syntax-table)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
134 (modify-syntax-entry ?= "." table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
135 (modify-syntax-entry ?_ "_" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
136 (modify-syntax-entry ?- "_" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
137 (modify-syntax-entry ?. "_" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
138 (modify-syntax-entry ?\' "\"" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
139 (modify-syntax-entry ?\; "<" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
140 (modify-syntax-entry ?\n ">" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
141 (modify-syntax-entry ?\r ">" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
142 table)
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
143 "Syntax table in use in Windows style `conf-mode' buffers.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
144
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
145 (defvar conf-unix-mode-syntax-table
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
146 (let ((table (make-syntax-table conf-mode-syntax-table)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
147 (modify-syntax-entry ?\# "<" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
148 ;; override
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
149 (modify-syntax-entry ?\; "." table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
150 table)
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
151 "Syntax table in use in Unix style `conf-mode' buffers.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
152
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
153 (defvar conf-javaprop-mode-syntax-table
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
154 (let ((table (make-syntax-table conf-unix-mode-syntax-table)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
155 (modify-syntax-entry ?/ ". 124" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
156 (modify-syntax-entry ?* ". 23b" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
157 table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
158 "Syntax table in use in Java prperties buffers.")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
159
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
160 (defvar conf-ppd-mode-syntax-table
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
161 (let ((table (make-syntax-table conf-mode-syntax-table)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
162 (modify-syntax-entry ?* ". 1" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
163 (modify-syntax-entry ?% ". 2" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
164 ;; override
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
165 (modify-syntax-entry ?\' "." table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
166 (modify-syntax-entry ?\; "." table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
167 table)
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
168 "Syntax table in use in PPD `conf-mode' buffers.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
169
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
170 (defvar conf-xdefaults-mode-syntax-table
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
171 (let ((table (make-syntax-table conf-mode-syntax-table)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
172 (modify-syntax-entry ?! "<" table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
173 ;; override
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
174 (modify-syntax-entry ?\; "." table)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
175 table)
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
176 "Syntax table in use in Xdefaults style `conf-mode' buffers.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
177
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
178
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
179 (defvar conf-font-lock-keywords
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
180 `(;; [section] (do this first because it may look like a parameter)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
181 ("^[ \t]*\\[\\(.+\\)\\]" 1 'font-lock-type-face)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
182 ;; var=val or var[index]=val
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
183 ("^[ \t]*\\(.+?\\)\\(?:\\[\\(.*?\\)\\]\\)?[ \t]*="
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
184 (1 'font-lock-variable-name-face)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
185 (2 'font-lock-constant-face nil t))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
186 ;; section { ... } (do this last because some assign ...{...)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
187 ("^[ \t]*\\([^=:\n]+?\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face prepend))
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
188 "Keywords to hilight in Conf mode.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
189
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
190 (defvar conf-javaprop-font-lock-keywords
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
191 '(;; var=val
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
192 ("^[ \t]*\\(.+?\\)\\(?:\\.\\([0-9]+\\)\\(?:\\.\\(.+?\\)\\(?:\\.\\([0-9]+\\)\\(?:\\.\\(.+?\\)\\(?:\\.\\([0-9]+\\)\\(\\..+?\\)?\\)?\\)?\\)?\\)?\\)?\\([:= \t]\\|$\\)"
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
193 (1 'font-lock-variable-name-face)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
194 (2 'font-lock-constant-face nil t)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
195 (3 'font-lock-variable-name-face nil t)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
196 (4 'font-lock-constant-face nil t)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
197 (5 'font-lock-variable-name-face nil t)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
198 (6 'font-lock-constant-face nil t)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
199 (7 'font-lock-variable-name-face nil t)))
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
200 "Keywords to hilight in Conf Java Properties mode.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
201
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
202 (defvar conf-space-keywords-alist
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
203 '(("\\`/etc/gpm/" . "key\\|name\\|foreground\\|background\\|border\\|head")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
204 ("\\`/etc/magic\\'" . "[^ \t]+[ \t]+\\(?:[bl]?e?\\(?:short\\|long\\)\\|byte\\|string\\)[^ \t]*")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
205 ("/mod\\(?:ules\\|probe\\)\\.conf" . "alias\\|in\\(?:clude\\|stall\\)\\|options\\|remove")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
206 ("/manpath\\.config" . "MAN\\(?:DATORY_MANPATH\\|PATH_MAP\\|DB_MAP\\)")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
207 ("/sensors\\.conf" . "chip\\|bus\\|label\\|compute\\|set\\|ignore")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
208 ("/sane\\(\\.d\\)?/" . "option\\|device\\|port\\|usb\\|sc\\(?:si\\|anner\\)")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
209 ("/resmgr\\.conf" . "class\\|add\\|allow\\|deny")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
210 ("/dictionary\\.lst\\'" . "DICT\\|HYPH\\|THES")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
211 ("/tuxracer/options" . "set"))
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
212 "File-name-based settings for the variable `conf-space-keywords'.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
213
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
214 (defvar conf-space-keywords nil
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
215 "Regexps for functions that may come before a space assignment.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
216 This allows constructs such as
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
217 keyword var value
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
218 This variable is best set in the file local variables, or through
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
219 `conf-space-keywords-alist'.")
79219
b892c8b20287 (conf-space-keywords): Mark this regexps as safe if a string.
Glenn Morris <rgm@gnu.org>
parents: 78225
diff changeset
220 (put 'conf-space-keywords 'safe-local-variable 'stringp)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
221
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
222 (defvar conf-space-font-lock-keywords
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
223 `(;; [section] (do this first because it may look like a parameter)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
224 ("^[ \t]*\\[\\(.+\\)\\]" 1 'font-lock-type-face)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
225 ;; section { ... } (do this first because it looks like a parameter)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
226 ("^[ \t]*\\(.+?\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
227 ;; var val
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
228 (eval if conf-space-keywords
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
229 (list (concat "^[ \t]*\\(" conf-space-keywords "\\)[ \t]+\\([^\000- ]+\\)")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
230 '(1 'font-lock-keyword-face)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
231 '(2 'font-lock-variable-name-face))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
232 '("^[ \t]*\\([^\000- ]+\\)" 1 'font-lock-variable-name-face)))
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
233 "Keywords to highlight in Conf Space mode.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
234
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
235 (defvar conf-colon-font-lock-keywords
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
236 `(;; [section] (do this first because it may look like a parameter)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
237 ("^[ \t]*\\[\\(.+\\)\\]" 1 'font-lock-type-face)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
238 ;; var: val
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
239 ("^[ \t]*\\(.+?\\)[ \t]*:"
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
240 (1 'font-lock-variable-name-face))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
241 ;; section { ... } (do this last because some assign ...{...)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
242 ("^[ \t]*\\([^:\n]+\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face prepend))
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
243 "Keywords to hilight in Conf Colon mode.")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
244
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
245 (defvar conf-assignment-sign ?=
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
246 "Sign used for assignments (char or string).")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
247
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
248 (defvar conf-assignment-regexp ".+?\\([ \t]*=[ \t]*\\)"
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
249 "Regexp to recognize assignments.
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
250 It is anchored after the first sexp on a line. There must be a
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
251 grouping for the assignment sign, including leading and trailing
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
252 whitespace.")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
253
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
254
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
255 ;; If anybody can figure out how to get the same effect by configuring
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
256 ;; `align', I'd be glad to hear.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
257 (defun conf-align-assignments (&optional arg)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
258 (interactive "P")
93535
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
259 "Align the assignments in the buffer or active region.
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
260 In Transient Mark mode, if the mark is active, operate on the
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
261 contents of the region. Otherwise, operate on the whole buffer."
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
262 (setq arg (if arg
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
263 (prefix-numeric-value arg)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
264 conf-assignment-column))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
265 (save-excursion
93535
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
266 (save-restriction
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
267 (when (use-region-p)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
268 (narrow-to-region (region-beginning) (region-end)))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
269 (goto-char (point-min))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
270 (while (not (eobp))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
271 (let ((cs (comment-beginning))) ; go before comment if within
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
272 (if cs (goto-char cs)))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
273 (while (forward-comment 9)) ; max-int?
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
274 (when (and (not (eobp))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
275 (looking-at conf-assignment-regexp))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
276 (goto-char (match-beginning 1))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
277 (delete-region (point) (match-end 1))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
278 (if conf-assignment-sign
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
279 (if (>= arg 0)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
280 (progn
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
281 (indent-to-column arg)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
282 (or (not conf-assignment-space)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
283 (memq (char-before (point)) '(?\s ?\t)) (insert ?\s))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
284 (insert conf-assignment-sign
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
285 (if (and conf-assignment-space (not (eolp))) ?\s "")))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
286 (insert (if conf-assignment-space ?\s "") conf-assignment-sign)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
287 (unless (eolp)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
288 (indent-to-column (- arg))
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
289 (or (not conf-assignment-space)
93535
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
290 (memq (char-before (point)) '(?\s ?\t)) (insert ?\s))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
291 (unless (eolp)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
292 (if (>= (current-column) (abs arg))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
293 (insert ?\s)
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
294 (indent-to-column (abs arg))))))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
295 (forward-line)))))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
296
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
297
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
298 (defun conf-quote-normal (arg)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
299 "Set the syntax of ' and \" to punctuation.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
300 With prefix arg, only do it for ' if 1, or only for \" if 2.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
301 This only affects the current buffer. Some conf files use quotes
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
302 to delimit strings, while others allow quotes as simple parts of
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
303 the assigned value. In those files font locking will be wrong,
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
304 and you can correct it with this command. (Some files even do
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
305 both, i.e. quotes delimit strings, except when they are
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
306 unbalanced, but hey...)"
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
307 (interactive "P")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
308 (let ((table (copy-syntax-table (syntax-table))))
93535
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
309 (when (or (not arg) (= (prefix-numeric-value arg) 1))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
310 (modify-syntax-entry ?\' "." table))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
311 (when (or (not arg) (= (prefix-numeric-value arg) 2))
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
312 (modify-syntax-entry ?\" "." table))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
313 (set-syntax-table table)
93535
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
314 (when font-lock-mode
a128a4284881 * emacs-lisp/debug.el (debugger-mode-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79719
diff changeset
315 (font-lock-fontify-buffer))))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
316
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
317
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
318 (defun conf-outline-level ()
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
319 (let ((depth 0)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
320 (pt (match-end 0)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
321 (condition-case nil
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
322 (while (setq pt (scan-lists pt -1 1)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
323 depth (1+ depth)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
324 (scan-error depth))))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
325
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
326
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
327
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
328 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
329 (defun conf-mode ()
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
330 "Mode for Unix and Windows Conf files and Java properties.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
331 Most conf files know only three kinds of constructs: parameter
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
332 assignments optionally grouped into sections and comments. Yet
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
333 there is a great range of variation in the exact syntax of conf
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
334 files. See below for various wrapper commands that set up the
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
335 details for some of the most widespread variants.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
336
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
337 This mode sets up font locking, outline, imenu and it provides
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
338 alignment support through `conf-align-assignments'. If strings
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
339 come out wrong, try `conf-quote-normal'.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
340
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
341 Some files allow continuation lines, either with a backslash at
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
342 the end of line, or by indenting the next line (further). These
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
343 constructs cannot currently be recognized.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
344
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
345 Because of this great variety of nuances, which are often not
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
346 even clearly specified, please don't expect it to get every file
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
347 quite right. Patches that clearly identify some special case,
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
348 without breaking the general ones, are welcome.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
349
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
350 If instead you start this mode with the generic `conf-mode'
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
351 command, it will parse the buffer. It will generally well
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
352 identify the first four cases listed below. If the buffer
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
353 doesn't have enough contents to decide, this is identical to
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
354 `conf-windows-mode' on Windows, elsewhere to `conf-unix-mode'.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
355 See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode',
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
356 `conf-ppd-mode' and `conf-xdefaults-mode'.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
357
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
358 \\{conf-mode-map}"
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
359
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
360 (interactive)
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
361 ;; `conf-mode' plays two roles: it's the parent of several sub-modes
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
362 ;; but it's also the function that chooses between those submodes.
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
363 ;; To tell the difference between those two cases where the function
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
364 ;; might be called, we check `delay-mode-hooks'.
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
365 ;; (adopted from tex-mode.el)
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
366 (if (not delay-mode-hooks)
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
367 ;; try to guess sub-mode of conf-mode based on buffer content
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
368 (let ((unix 0) (win 0) (equal 0) (colon 0) (space 0) (jp 0))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
369 (save-excursion
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
370 (goto-char (point-min))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
371 (while (not (eobp))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
372 (skip-chars-forward " \t\f")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
373 (cond ((eq (char-after) ?\#) (setq unix (1+ unix)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
374 ((eq (char-after) ?\;) (setq win (1+ win)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
375 ((eq (char-after) ?\[)) ; nop
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
376 ((eolp)) ; nop
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
377 ((eq (char-after) ?})) ; nop
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
378 ;; recognize at most double spaces within names
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
379 ((looking-at "[^ \t\n=:]+\\(?: ?[^ \t\n=:]+\\)*[ \t]*[=:]")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
380 (if (eq (char-before (match-end 0)) ?=)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
381 (setq equal (1+ equal))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
382 (setq colon (1+ colon))))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
383 ((looking-at "/[/*]") (setq jp (1+ jp)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
384 ((looking-at ".*{")) ; nop
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
385 ((setq space (1+ space))))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
386 (forward-line)))
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
387 (cond
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
388 ((> jp (max unix win 3)) (conf-javaprop-mode))
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
389 ((> colon (max equal space)) (conf-colon-mode))
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
390 ((> space (max equal colon)) (conf-space-mode))
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
391 ((or (> win unix) (and (= win unix) (eq system-type 'windows-nt)))
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
392 (conf-windows-mode))
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
393 (t (conf-unix-mode))))
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
394
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
395 (kill-all-local-variables)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
396 (use-local-map conf-mode-map)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
397 (setq major-mode 'conf-mode
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
398 mode-name "Conf[?]")
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
399 (set (make-local-variable 'font-lock-defaults)
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
400 '(conf-font-lock-keywords nil t nil nil))
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
401 ;; Let newcomment.el decide this for itself.
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
402 ;; (set (make-local-variable 'comment-use-syntax) t)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
403 (set (make-local-variable 'parse-sexp-ignore-comments) t)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
404 (set (make-local-variable 'outline-regexp)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
405 "[ \t]*\\(?:\\[\\|.+[ \t\n]*{\\)")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
406 (set (make-local-variable 'outline-heading-end-regexp)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
407 "[\n}]")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
408 (set (make-local-variable 'outline-level)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
409 'conf-outline-level)
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
410 (set-syntax-table conf-mode-syntax-table)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
411 (setq imenu-generic-expression
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
412 '(("Parameters" "^[ \t]*\\(.+?\\)[ \t]*=" 1)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
413 ;; [section]
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
414 (nil "^[ \t]*\\[[ \t]*\\(.+\\)[ \t]*\\]" 1)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
415 ;; section { ... }
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
416 (nil "^[ \t]*\\([^=:{} \t\n][^=:{}\n]+\\)[ \t\n]*{" 1)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
417 (run-mode-hooks 'conf-mode-hook)))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
418
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
419 (defun conf-mode-initialize (comment &optional font-lock)
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
420 "Intitializations for sub-modes of conf-mode.
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
421 COMMENT initializes `comment-start' and `comment-start-skip'.
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
422 The optional arg FONT-LOCK is the value for FONT-LOCK-KEYWORDS."
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
423 (set (make-local-variable 'comment-start) comment)
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
424 (set (make-local-variable 'comment-start-skip)
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
425 (concat (regexp-quote comment-start) "+\\s *"))
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
426 (if font-lock
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
427 (set (make-local-variable 'font-lock-defaults)
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
428 `(,font-lock nil t nil nil))))
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
429
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
430 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
431 (define-derived-mode conf-unix-mode conf-mode "Conf[Unix]"
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
432 "Conf Mode starter for Unix style Conf files.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
433 Comments start with `#'.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
434 For details see `conf-mode'. Example:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
435
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
436 # Conf mode font-locks this right on Unix and with \\[conf-unix-mode]
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
437
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
438 \[Desktop Entry]
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
439 Encoding=UTF-8
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
440 Name=The GIMP
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
441 Name[ca]=El GIMP
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
442 Name[cs]=GIMP"
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
443 (conf-mode-initialize "#"))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
444
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
445 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
446 (define-derived-mode conf-windows-mode conf-mode "Conf[WinIni]"
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
447 "Conf Mode starter for Windows style Conf files.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
448 Comments start with `;'.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
449 For details see `conf-mode'. Example:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
450
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
451 ; Conf mode font-locks this right on Windows and with \\[conf-windows-mode]
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
452
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
453 \[ExtShellFolderViews]
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
454 Default={5984FFE0-28D4-11CF-AE66-08002B2E1262}
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
455 {5984FFE0-28D4-11CF-AE66-08002B2E1262}={5984FFE0-28D4-11CF-AE66-08002B2E1262}
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
456
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
457 \[{5984FFE0-28D4-11CF-AE66-08002B2E1262}]
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
458 PersistMoniker=file://Folder.htt"
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
459 (conf-mode-initialize ";"))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
460
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
461 ;; Here are a few more or less widespread styles. There are others, so
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
462 ;; obscure, they are not covered. E.g. RFC 2614 allows both Unix and Windows
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
463 ;; comments. Or the donkey has (* Pascal comments *) -- roll your own starter
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
464 ;; if you need it.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
465
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
466 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
467 (define-derived-mode conf-javaprop-mode conf-mode "Conf[JavaProp]"
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
468 "Conf Mode starter for Java properties files.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
469 Comments start with `#' but are also recognized with `//' or
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
470 between `/*' and `*/'.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
471 For details see `conf-mode'. Example:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
472
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
473 # Conf mode font-locks this right with \\[conf-javaprop-mode] (Java properties)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
474 // another kind of comment
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
475 /* yet another */
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
476
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
477 name:value
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
478 name=value
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
479 name value
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
480 x.1 =
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
481 x.2.y.1.z.1 =
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
482 x.2.y.1.z.2.zz ="
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
483 (conf-mode-initialize "#" 'conf-javaprop-font-lock-keywords)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
484 (set (make-local-variable 'conf-assignment-column)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
485 conf-javaprop-assignment-column)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
486 (set (make-local-variable 'conf-assignment-regexp)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
487 ".+?\\([ \t]*[=: \t][ \t]*\\|$\\)")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
488 (setq comment-start-skip "\\(?:#+\\|/[/*]+\\)\\s *")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
489 (setq imenu-generic-expression
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
490 '(("Parameters" "^[ \t]*\\(.+?\\)[=: \t]" 1))))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
491
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
492 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
493 (define-derived-mode conf-space-mode conf-unix-mode "Conf[Space]"
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
494 "Conf Mode starter for space separated conf files.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
495 \"Assignments\" are with ` '. Keywords before the parameters are
72972
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
496 recognized according to the variable `conf-space-keywords-alist'.
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
497 Alternatively, you can specify a value for the file local variable
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
498 `conf-space-keywords'.
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
499 Use the function `conf-space-keywords' if you want to specify keywords
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
500 in an interactive fashion instead.
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
501
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
502 For details see `conf-mode'. Example:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
503
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
504 # Conf mode font-locks this right with \\[conf-space-mode] (space separated)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
505
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
506 image/jpeg jpeg jpg jpe
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
507 image/png png
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
508 image/tiff tiff tif
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
509
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
510 # Or with keywords (from a recognized file name):
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
511 class desktop
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
512 # Standard multimedia devices
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
513 add /dev/audio desktop
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
514 add /dev/mixer desktop"
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
515 (conf-mode-initialize "#" 'conf-space-font-lock-keywords)
72764
88fd4983fe78 (conf-space-mode): Use hack-local-variables-hook instead of calling
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
516 (make-local-variable 'conf-assignment-sign)
88fd4983fe78 (conf-space-mode): Use hack-local-variables-hook instead of calling
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
517 (setq conf-assignment-sign nil)
72769
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
518 (make-local-variable 'conf-space-keywords)
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
519 (cond (buffer-file-name
72972
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
520 ;; We set conf-space-keywords directly, but a value which is
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
521 ;; in the local variables list or interactively specified
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
522 ;; (see the function conf-space-keywords) takes precedence.
72764
88fd4983fe78 (conf-space-mode): Use hack-local-variables-hook instead of calling
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
523 (setq conf-space-keywords
88fd4983fe78 (conf-space-mode): Use hack-local-variables-hook instead of calling
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
524 (assoc-default buffer-file-name conf-space-keywords-alist
88fd4983fe78 (conf-space-mode): Use hack-local-variables-hook instead of calling
Richard M. Stallman <rms@gnu.org>
parents: 68648
diff changeset
525 'string-match))))
72769
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
526 (conf-space-mode-internal)
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
527 ;; In case the local variables list specifies conf-space-keywords,
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
528 ;; recompute other things from that afterward.
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
529 (add-hook 'hack-local-variables-hook 'conf-space-mode-internal nil t))
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
530
72972
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
531 ;;;###autoload
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
532 (defun conf-space-keywords (keywords)
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
533 "Enter Conf Space mode using regexp KEYWORDS to match the keywords.
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
534 See `conf-space-mode'."
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
535 (interactive "sConf Space keyword regexp: ")
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
536 (delay-mode-hooks
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
537 (conf-space-mode))
72972
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
538 (if (string-equal keywords "")
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
539 (setq keywords nil))
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
540 (setq conf-space-keywords keywords)
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
541 (conf-space-mode-internal)
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
542 (run-mode-hooks))
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
543
72769
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
544 (defun conf-space-mode-internal ()
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
545 (make-local-variable 'conf-assignment-regexp)
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
546 (setq conf-assignment-regexp
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
547 (if conf-space-keywords
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
548 (concat "\\(?:" conf-space-keywords "\\)[ \t]+.+?\\([ \t]+\\|$\\)")
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
549 ".+?\\([ \t]+\\|$\\)"))
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
550 ;; If Font Lock is already enabled, reenable it with new
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
551 ;; conf-assignment-regexp.
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
552 (when (and font-lock-mode
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
553 (boundp 'font-lock-keywords)) ;see `normal-mode'
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
554 (font-lock-add-keywords nil nil)
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
555 (font-lock-mode 1))
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
556 ;; Copy so that we don't destroy shared structure.
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
557 (setq imenu-generic-expression (copy-sequence imenu-generic-expression))
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
558 ;; Get rid of any existing Parameters element.
72769
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
559 (setq imenu-generic-expression
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
560 (delq (assoc "Parameters" imenu-generic-expression)
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
561 imenu-generic-expression))
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
562 ;; Add a new one based on conf-space-keywords.
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
563 (setq imenu-generic-expression
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
564 (cons `("Parameters"
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
565 ,(if conf-space-keywords
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
566 (concat "^[ \t]*\\(?:" conf-space-keywords
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
567 "\\)[ \t]+\\([^ \t\n]+\\)\\(?:[ \t]\\|$\\)")
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
568 "^[ \t]*\\([^ \t\n[]+\\)\\(?:[ \t]\\|$\\)")
72972
5ae87c1395e1 (conf-space-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 72940
diff changeset
569 1)
72940
c2b72b555fc4 (conf-mode-map): Use conf-space-keywords cmd.
Richard M. Stallman <rms@gnu.org>
parents: 72769
diff changeset
570 imenu-generic-expression)))
72769
00b6d782491f (conf-space-mode-internal): New subroutine. Reinit Font Lock mode.
Richard M. Stallman <rms@gnu.org>
parents: 72764
diff changeset
571
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
572 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
573 (define-derived-mode conf-colon-mode conf-unix-mode "Conf[Colon]"
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
574 "Conf Mode starter for Colon files.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
575 \"Assignments\" are with `:'.
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
576 For details see `conf-mode'. Example:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
577
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
578 # Conf mode font-locks this right with \\[conf-colon-mode] (colon)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
579
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
580 <Multi_key> <exclam> <exclam> : \"\\241\" exclamdown
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
581 <Multi_key> <c> <slash> : \"\\242\" cent"
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
582 (conf-mode-initialize "#" 'conf-colon-font-lock-keywords)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
583 (set (make-local-variable 'conf-assignment-space)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
584 conf-colon-assignment-space)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
585 (set (make-local-variable 'conf-assignment-column)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
586 conf-colon-assignment-column)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
587 (set (make-local-variable 'conf-assignment-sign)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
588 ?:)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
589 (set (make-local-variable 'conf-assignment-regexp)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
590 ".+?\\([ \t]*:[ \t]*\\)")
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
591 (setq imenu-generic-expression
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
592 `(("Parameters" "^[ \t]*\\(.+?\\)[ \t]*:" 1)
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
593 ,@(cdr imenu-generic-expression))))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
594
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
595 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
596 (define-derived-mode conf-ppd-mode conf-colon-mode "Conf[PPD]"
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
597 "Conf Mode starter for Adobe/CUPS PPD files.
58692
4867e00488dc *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58691
diff changeset
598 Comments start with `*%' and \"assignments\" are with `:'.
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
599 For details see `conf-mode'. Example:
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
600
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
601 *% Conf mode font-locks this right with \\[conf-ppd-mode] (PPD)
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
602
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
603 *DefaultTransfer: Null
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
604 *Transfer Null.Inverse: \"{ 1 exch sub }\""
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
605 (conf-mode-initialize "*%")
58691
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
606 ;; no sections, they match within PostScript code
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
607 (setq imenu-generic-expression (list (car imenu-generic-expression))))
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
608
e5f1fb888f0b (conf-ppd-mode-syntax-table): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 58128
diff changeset
609 ;;;###autoload
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
610 (define-derived-mode conf-xdefaults-mode conf-colon-mode "Conf[Xdefaults]"
58115
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
611 "Conf Mode starter for Xdefaults files.
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
612 Comments start with `!' and \"assignments\" are with `:'.
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
613 For details see `conf-mode'. Example:
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
614
66188
fe198c9ace5c Don't use font-lock-defaults-alist.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65261
diff changeset
615 ! Conf mode font-locks this right with \\[conf-xdefaults-mode] (.Xdefaults)
58115
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
616
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
617 *background: gray99
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
618 *foreground: black"
66524
33e9ace34df4 (conf-mode-initialize): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 66188
diff changeset
619 (conf-mode-initialize "!"))
58115
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
620
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
621 (provide 'conf-mode)
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
622
58116
a026512a201c Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents: 58115
diff changeset
623 ;; arch-tag: 0a3805b2-0371-4d3a-8498-8897116b2356
58115
740fbca5078f *** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
diff changeset
624 ;;; conf-mode.el ends here