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