1 ;;; generic-x.el --- A collection of generic modes
3 ;; Copyright (C) 1997-1998, 2001-2012 Free Software Foundation, Inc.
5 ;; Author: Peter Breton <pbreton@cs.umb.edu>
6 ;; Created: Tue Oct 08 1996
7 ;; Keywords: generic, comment, font-lock
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; This file contains a collection of generic modes.
31 ;; Add this line to your init file:
33 ;; (require 'generic-x)
35 ;; You can decide which modes to load by setting the variable
36 ;; `generic-extras-enable-list'. Its default value is platform-
37 ;; specific. The recommended way to set this variable is through
40 ;; M-x customize-option RET generic-extras-enable-list RET
42 ;; This lets you select generic modes from the list of available
43 ;; modes. If you manually set `generic-extras-enable-list' in your
44 ;; .emacs, do it BEFORE loading generic-x with (require 'generic-x).
46 ;; You can also send in new modes; if the file types are reasonably
47 ;; common, we would like to install them.
49 ;; DEFAULT GENERIC MODE:
51 ;; This file provides a hook which automatically puts a file into
52 ;; `default-generic-mode' if the first few lines of a file in
53 ;; fundamental mode start with a hash comment character. To disable
54 ;; this functionality, set the variable `generic-use-find-file-hook'
55 ;; to nil BEFORE loading generic-x. See the variables
56 ;; `generic-lines-to-scan' and `generic-find-file-regexp' for
57 ;; customization options.
59 ;; PROBLEMS WHEN USED WITH FOLDING MODE:
61 ;; [The following relates to the obsolete selective-display technique.
62 ;; Folding mode should use invisible text properties instead. -- Dave
65 ;; From Anders Lindgren <andersl@csd.uu.se>
67 ;; Problem summary: Wayne Adams has found a problem when using folding
68 ;; mode in conjunction with font-lock for a mode defined in
71 ;; The problem, as Wayne described it, was that error messages of the
72 ;; following form appeared when both font-lock and folding are used:
74 ;; > - various msgs including "Fontifying region...(error Stack
75 ;; > overflow in regexp matcher)" appear
77 ;; I have just tracked down the cause of the problem. The regexp's in
78 ;; `generic-x.el' do not take into account the way that folding hides
79 ;; sections of the buffer. The technique is known as
80 ;; `selective-display' and has been available for a very long time (I
81 ;; started using it back in the good old Emacs 18 days). Basically, a
82 ;; section is hidden by creating one very long line were the newline
83 ;; character (C-j) is replaced by a linefeed (C-m) character.
85 ;; Many other hiding packages, besides folding, use the same technique,
86 ;; the problem should occur when using them as well.
88 ;; The erroneous lines in `generic-x.el' look like the following (this
89 ;; example is from the `ini' section):
91 ;; '(("^\\(\\[.*\\]\\)" 1 'font-lock-constant-face)
92 ;; ("^\\(.*\\)=" 1 'font-lock-variable-name-face)
94 ;; The intention of these lines is to highlight lines of the following
100 ;; However, since the `.' regexp symbol matches the linefeed character
101 ;; the entire folded section is searched, resulting in a regexp stack
104 ;; Solution suggestion: Instead of using ".", use the sequence
105 ;; "[^\n\r]". This will make the rules behave just as before, but
106 ;; they will work together with selective-display.
110 (eval-when-compile (require 'font-lock
))
112 (defgroup generic-x nil
113 "A collection of generic modes."
118 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
119 ;; Default-Generic mode
120 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
122 (defcustom generic-use-find-file-hook t
123 "If non-nil, add a hook to enter `default-generic-mode' automatically.
124 This is done if the first few lines of a file in fundamental mode
125 start with a hash comment character."
129 (defcustom generic-lines-to-scan
3
130 "Number of lines that `generic-mode-find-file-hook' looks at.
131 Relevant when deciding whether to enter Default-Generic mode automatically.
132 This variable should be set to a small positive number."
136 (defcustom generic-find-file-regexp
"^#"
137 "Regular expression used by `generic-mode-find-file-hook'.
138 Files in fundamental mode whose first few lines contain a match
139 for this regexp, should be put into Default-Generic mode instead.
140 The number of lines tested for the matches is specified by the
141 value of the variable `generic-lines-to-scan', which see."
145 (defcustom generic-ignore-files-regexp
"[Tt][Aa][Gg][Ss]\\'"
146 "Regular expression used by `generic-mode-find-file-hook'.
147 Files whose names match this regular expression should not be put
148 into Default-Generic mode, even if they have lines which match
149 the regexp in `generic-find-file-regexp'. If the value is nil,
150 `generic-mode-find-file-hook' does not check the file names."
152 :type
'(choice (const :tag
"Don't check file names" nil
) regexp
))
154 ;; This generic mode is always defined
155 (define-generic-mode default-generic-mode
(list ?
#) nil nil nil nil
)
157 ;; A more general solution would allow us to enter generic-mode for
158 ;; *any* comment character, but would require us to synthesize a new
159 ;; generic-mode on the fly. I think this gives us most of what we
161 (defun generic-mode-find-file-hook ()
162 "Hook function to enter Default-Generic mode automatically.
164 Done if the first few lines of a file in Fundamental mode start
165 with a match for the regexp in `generic-find-file-regexp', unless
166 the file's name matches the regexp which is the value of the
167 variable `generic-ignore-files-regexp'.
169 This hook will be installed if the variable
170 `generic-use-find-file-hook' is non-nil. The variable
171 `generic-lines-to-scan' determines the number of lines to look at."
172 (when (and (eq major-mode
'fundamental-mode
)
173 (or (null generic-ignore-files-regexp
)
175 generic-ignore-files-regexp
176 (file-name-sans-versions buffer-file-name
)))))
178 (goto-char (point-min))
179 (when (re-search-forward generic-find-file-regexp
181 (forward-line generic-lines-to-scan
)
183 (goto-char (point-min))
184 (default-generic-mode)))))
186 (and generic-use-find-file-hook
187 (add-hook 'find-file-hook
'generic-mode-find-file-hook
))
189 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
190 ;; Other Generic modes
191 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
193 ;; If you add a generic mode to this file, put it in one of these four
196 (defconst generic-default-modes
197 '(apache-conf-generic-mode
198 apache-log-generic-mode
200 java-manifest-generic-mode
201 java-properties-generic-mode
202 javascript-generic-mode
203 show-tabs-generic-mode
205 "List of generic modes that are defined by default.")
207 (defconst generic-mswindows-modes
214 "List of generic modes that are defined by default on MS-Windows.")
216 (defconst generic-unix-modes
218 etc-fstab-generic-mode
219 etc-modules-conf-generic-mode
220 etc-passwd-generic-mode
221 etc-services-generic-mode
222 etc-sudoers-generic-mode
224 inetd-conf-generic-mode
225 mailagent-rules-generic-mode
227 named-boot-generic-mode
228 named-database-generic-mode
229 prototype-generic-mode
230 resolve-conf-generic-mode
232 x-resource-generic-mode
233 xmodmap-generic-mode
)
234 "List of generic modes that are defined by default on Unix.")
236 (defconst generic-other-modes
241 "List of generic modes that are not defined by default.")
243 (defcustom generic-define-mswindows-modes
244 (memq system-type
'(windows-nt ms-dos
))
245 "Non-nil means the modes in `generic-mswindows-modes' will be defined.
246 This is a list of MS-Windows specific generic modes. This variable
247 only affects the default value of `generic-extras-enable-list'."
251 (make-obsolete-variable 'generic-define-mswindows-modes
'generic-extras-enable-list
"22.1")
253 (defcustom generic-define-unix-modes
254 (not (memq system-type
'(windows-nt ms-dos
)))
255 "Non-nil means the modes in `generic-unix-modes' will be defined.
256 This is a list of Unix specific generic modes. This variable only
257 affects the default value of `generic-extras-enable-list'."
261 (make-obsolete-variable 'generic-define-unix-modes
'generic-extras-enable-list
"22.1")
263 (defcustom generic-extras-enable-list
264 (append generic-default-modes
265 (if generic-define-mswindows-modes generic-mswindows-modes
)
266 (if generic-define-unix-modes generic-unix-modes
)
268 "List of generic modes to define.
269 Each entry in the list should be a symbol. If you set this variable
270 directly, without using customize, you must reload generic-x to put
271 your changes into effect."
275 (sort (append generic-default-modes
276 generic-mswindows-modes
281 (string< (symbol-name b
)
284 (push `(const ,mode
) list
)))
287 (unless load-in-progress
292 (when (memq 'apache-conf-generic-mode generic-extras-enable-list
)
294 (define-generic-mode apache-conf-generic-mode
297 '(("^\\s-*\\(<.*>\\)" 1 font-lock-constant-face
)
298 ("^\\s-*\\(\\sw+\\)\\s-" 1 font-lock-variable-name-face
))
299 '("srm\\.conf\\'" "httpd\\.conf\\'" "access\\.conf\\'")
303 (setq imenu-generic-expression
304 '((nil "^\\([-A-Za-z0-9_]+\\)" 1)
305 ("*Directories*" "^\\s-*<Directory\\s-*\\([^>]+\\)>" 1)
306 ("*Locations*" "^\\s-*<Location\\s-*\\([^>]+\\)>" 1))))))
307 "Generic mode for Apache or HTTPD configuration files."))
309 (when (memq 'apache-log-generic-mode generic-extras-enable-list
)
311 (define-generic-mode apache-log-generic-mode
314 ;; Hostname ? user date request return-code number-of-bytes
315 '(("^\\([-a-zA-z0-9.]+\\) - [-A-Za-z]+ \\(\\[.*\\]\\)"
316 (1 font-lock-constant-face
)
317 (2 font-lock-variable-name-face
)))
320 "Generic mode for Apache log files."))
323 (when (memq 'samba-generic-mode generic-extras-enable-list
)
325 (define-generic-mode samba-generic-mode
328 '(("^\\(\\[.*\\]\\)" 1 font-lock-constant-face
)
329 ("^\\s-*\\(.+\\)=\\([^\r\n]*\\)"
330 (1 font-lock-variable-name-face
)
331 (2 font-lock-type-face
)))
333 '(generic-bracket-support)
334 "Generic mode for Samba configuration files."))
337 ;; This is pretty basic. Also, modes for other window managers could
338 ;; be defined as well.
339 (when (memq 'fvwm-generic-mode generic-extras-enable-list
)
341 (define-generic-mode fvwm-generic-mode
357 '("\\.fvwmrc\\'" "\\.fvwm2rc\\'")
359 "Generic mode for FVWM configuration files."))
362 ;; I'm pretty sure I've seen an actual mode to do this, but I don't
363 ;; think it's standard with Emacs
364 (when (memq 'x-resource-generic-mode generic-extras-enable-list
)
366 (define-generic-mode x-resource-generic-mode
369 '(("^\\([^:\n]+:\\)" 1 font-lock-variable-name-face
))
370 '("\\.Xdefaults\\'" "\\.Xresources\\'" "\\.Xenvironment\\'" "\\.ad\\'")
372 "Generic mode for X Resource configuration files."))
374 (if (memq 'xmodmap-generic-mode generic-extras-enable-list
)
375 (define-generic-mode xmodmap-generic-mode
377 '("add" "clear" "keycode" "keysym" "remove" "pointer")
379 '("[xX]modmap\\(rc\\)?\\'")
381 "Simple mode for xmodmap files."))
384 (when (memq 'hosts-generic-mode generic-extras-enable-list
)
386 (define-generic-mode hosts-generic-mode
389 '(("\\([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\\)" 1 font-lock-constant-face
))
390 '("[hH][oO][sS][tT][sS]\\'")
392 "Generic mode for HOSTS files."))
394 ;;; Windows INF files
396 ;; If i-g-m-f-f-h is defined, then so is i-g-m.
397 (declare-function ini-generic-mode
"generic-x")
399 (when (memq 'inf-generic-mode generic-extras-enable-list
)
401 (define-generic-mode inf-generic-mode
404 '(("^\\(\\[.*\\]\\)" 1 font-lock-constant-face
))
405 '("\\.[iI][nN][fF]\\'")
406 '(generic-bracket-support)
407 "Generic mode for MS-Windows INF files."))
409 ;;; Windows INI files
410 ;; Should define escape character as well!
411 (when (memq 'ini-generic-mode generic-extras-enable-list
)
413 (define-generic-mode ini-generic-mode
416 '(("^\\(\\[.*\\]\\)" 1 font-lock-constant-face
)
417 ("^\\([^=\n\r]*\\)=\\([^\n\r]*\\)$"
418 (1 font-lock-function-name-face
)
419 (2 font-lock-variable-name-face
)))
420 '("\\.[iI][nN][iI]\\'")
424 (setq imenu-generic-expression
425 '((nil "^\\[\\(.*\\)\\]" 1)
426 ("*Variables*" "^\\s-*\\([^=]+\\)\\s-*=" 1))))))
427 "Generic mode for MS-Windows INI files.
428 You can use `ini-generic-mode-find-file-hook' to enter this mode
429 automatically for INI files whose names do not end in \".ini\".")
431 (defun ini-generic-mode-find-file-hook ()
432 "Hook function to enter Ini-Generic mode automatically for INI files.
433 Done if the first few lines of a file in Fundamental mode look
434 like an INI file. You can add this hook to `find-file-hook'."
435 (and (eq major-mode
'fundamental-mode
)
437 (goto-char (point-min))
438 (and (looking-at "^\\s-*\\[.*\\]")
439 (ini-generic-mode)))))
440 (defalias 'generic-mode-ini-file-find-file-hook
'ini-generic-mode-find-file-hook
))
442 ;;; Windows REG files
443 ;;; Unfortunately, Windows 95 and Windows NT have different REG file syntax!
444 (when (memq 'reg-generic-mode generic-extras-enable-list
)
446 (define-generic-mode reg-generic-mode
448 '("key" "classes_root" "REGEDIT" "REGEDIT4")
449 '(("\\(\\[.*\\]\\)" 1 font-lock-constant-face
)
450 ("^\\([^\n\r]*\\)\\s-*=" 1 font-lock-variable-name-face
))
451 '("\\.[rR][eE][gG]\\'")
455 (setq imenu-generic-expression
456 '((nil "^\\s-*\\(.*\\)\\s-*=" 1))))))
457 "Generic mode for MS-Windows Registry files."))
459 (declare-function w32-shell-name
"w32-fns" ())
461 ;;; DOS/Windows BAT files
462 (when (memq 'bat-generic-mode generic-extras-enable-list
)
464 (define-generic-mode bat-generic-mode
469 ;; Make this one first in the list, otherwise comments will
470 ;; be over-written by other variables
471 '("^[@ \t]*\\([rR][eE][mM][^\n\r]*\\)" 1 font-lock-comment-face t
)
472 '("^[ \t]*\\(::.*\\)" 1 font-lock-comment-face t
)
473 '("^[@ \t]*\\([bB][rR][eE][aA][kK]\\|[vV][eE][rR][iI][fF][yY]\\)[ \t]+\\([oO]\\([nN]\\|[fF][fF]\\)\\)"
474 (1 font-lock-builtin-face
)
475 (2 font-lock-constant-face t t
))
476 ;; Any text (except ON/OFF) following ECHO is a string.
477 '("^[@ \t]*\\([eE][cC][hH][oO]\\)[ \t]+\\(\\([oO]\\([nN]\\|[fF][fF]\\)\\)\\|\\([^>|\r\n]+\\)\\)"
478 (1 font-lock-builtin-face
)
479 (3 font-lock-constant-face t t
)
480 (5 font-lock-string-face t t
))
481 ;; These keywords appear as the first word on a line. (Actually, they
482 ;; can also appear after "if ..." or "for ..." clause, but since they
483 ;; are frequently used in simple text, we punt.)
484 ;; In `generic-bat-mode-setup-function' we make the keywords
486 (generic-make-keywords-list
489 font-lock-keyword-face
"^[@ \t]*")
490 ;; These keywords can be anywhere on a line
491 ;; In `generic-bat-mode-setup-function' we make the keywords
493 (generic-make-keywords-list
499 font-lock-keyword-face
)
500 ;; These are built-in commands. Only frequently-used ones are listed.
501 (generic-make-keywords-list
502 '("CALL" "call" "Call"
510 "PAUSE" "pause" "Pause"
511 "PROMPT" "prompt" "Prompt"
515 "START" "start" "Start"
516 "SHIFT" "shift" "Shift")
517 font-lock-builtin-face
"[ \t|\n]")
518 '("^[ \t]*\\(:\\sw+\\)" 1 font-lock-function-name-face t
)
519 '("\\(%\\sw+%\\)" 1 font-lock-variable-name-face t
)
520 '("\\(%[0-9]\\)" 1 font-lock-variable-name-face t
)
521 '("[\t ]+\\([+-/][^\t\n\" ]+\\)" 1 font-lock-type-face
)
522 '("[ \t\n|]\\<\\([gG][oO][tT][oO]\\)\\>[ \t]*\\(\\sw+\\)?"
523 (1 font-lock-keyword-face
)
524 (2 font-lock-function-name-face nil t
))
525 '("[ \t\n|]\\<\\([sS][eE][tT]\\)\\>[ \t]*\\(\\sw+\\)?[ \t]*=?"
526 (1 font-lock-builtin-face
)
527 (2 font-lock-variable-name-face t t
))))
528 '("\\.[bB][aA][tT]\\'"
530 "\\`[cC][oO][nN][fF][iI][gG]\\."
531 "\\`[aA][uU][tT][oO][eE][xX][eE][cC]\\.")
532 '(generic-bat-mode-setup-function)
533 "Generic mode for MS-Windows batch files.")
535 (defvar bat-generic-mode-syntax-table nil
536 "Syntax table in use in `bat-generic-mode' buffers.")
538 (defvar bat-generic-mode-keymap
(make-sparse-keymap)
539 "Keymap for `bat-generic-mode'.")
541 (defun bat-generic-mode-compile ()
542 "Run the current BAT file in a compilation buffer."
544 (let ((compilation-buffer-name-function
547 (concat "*" (buffer-file-name) "*")))))
549 (concat (w32-shell-name) " -c " (buffer-file-name)))))
551 (eval-when-compile (require 'comint
))
552 (defun bat-generic-mode-run-as-comint ()
553 "Run the current BAT file in a comint buffer."
556 (let* ((file (buffer-file-name))
557 (buf-name (concat "*" file
"*")))
558 (with-current-buffer (get-buffer-create buf-name
)
567 (display-buffer buf-name
))))
569 (define-key bat-generic-mode-keymap
"\C-c\C-c" 'bat-generic-mode-compile
)
571 ;; Make underscores count as words
572 (unless bat-generic-mode-syntax-table
573 (setq bat-generic-mode-syntax-table
(make-syntax-table))
574 (modify-syntax-entry ?_
"w" bat-generic-mode-syntax-table
))
576 ;; bat-generic-mode doesn't use the comment functionality of
577 ;; define-generic-mode because it has a three-letter comment-string,
578 ;; so we do it here manually instead
579 (defun generic-bat-mode-setup-function ()
580 (make-local-variable 'parse-sexp-ignore-comments
)
581 (make-local-variable 'comment-start
)
582 (make-local-variable 'comment-start-skip
)
583 (make-local-variable 'comment-end
)
584 (setq imenu-generic-expression
'((nil "^:\\(\\sw+\\)" 1))
585 parse-sexp-ignore-comments t
588 comment-start-skip
"[Rr][Ee][Mm] *")
589 (set-syntax-table bat-generic-mode-syntax-table
)
590 ;; Make keywords case-insensitive
591 (setq font-lock-defaults
'(generic-font-lock-keywords nil t
))
592 (use-local-map bat-generic-mode-keymap
)))
595 ;; Mailagent is a Unix mail filtering program. Anyone wanna do a
596 ;; generic mode for procmail?
597 (when (memq 'mailagent-rules-generic-mode generic-extras-enable-list
)
599 (define-generic-mode mailagent-rules-generic-mode
601 '("SAVE" "DELETE" "PIPE" "ANNOTATE" "REJECT")
602 '(("^\\(\\sw+\\)\\s-*=" 1 font-lock-variable-name-face
)
603 ("\\s-/\\([^/]+\\)/[i, \t\n]" 1 font-lock-constant-face
))
608 (setq imenu-generic-expression
609 '((nil "\\s-/\\([^/]+\\)/[i, \t\n]" 1))))))
610 "Generic mode for Mailagent rules files."))
612 ;; Solaris/Sys V prototype files
613 (when (memq 'prototype-generic-mode generic-extras-enable-list
)
615 (define-generic-mode prototype-generic-mode
618 '(("^\\([0-9]\\)?\\s-*\\([a-z]\\)\\s-+\\([A-Za-z_]+\\)\\s-+\\([^\n\r]*\\)$"
619 (2 font-lock-constant-face
)
620 (3 font-lock-keyword-face
))
621 ("^\\([a-z]\\) \\([A-Za-z_]+\\)=\\([^\n\r]*\\)$"
622 (1 font-lock-constant-face
)
623 (2 font-lock-keyword-face
)
624 (3 font-lock-variable-name-face
))
625 ("^\\(!\\s-*\\(search\\|include\\|default\\)\\)\\s-*\\([^\n\r]*\\)$"
626 (1 font-lock-keyword-face
)
627 (3 font-lock-variable-name-face
))
628 ("^\\(!\\s-*\\sw+\\)=\\([^\n\r]*\\)$"
629 (1 font-lock-keyword-face
)
630 (2 font-lock-variable-name-face
)))
633 "Generic mode for Sys V prototype files."))
635 ;; Solaris/Sys V pkginfo files
636 (when (memq 'pkginfo-generic-mode generic-extras-enable-list
)
638 (define-generic-mode pkginfo-generic-mode
641 '(("^\\([A-Za-z_]+\\)=\\([^\n\r]*\\)$"
642 (1 font-lock-keyword-face
)
643 (2 font-lock-variable-name-face
)))
646 "Generic mode for Sys V pkginfo files."))
649 ;; Obsolete; defer to js-mode from js.el.
650 (when (memq 'javascript-generic-mode generic-extras-enable-list
)
651 (define-obsolete-function-alias 'javascript-generic-mode
'js-mode
"24.3")
652 (define-obsolete-variable-alias 'javascript-generic-mode-hook
'js-mode-hook
"24.3"))
655 (when (memq 'vrml-generic-mode generic-extras-enable-list
)
657 (define-generic-mode vrml-generic-mode
687 '(("USE\\s-+\\([-A-Za-z0-9_]+\\)"
688 (1 font-lock-constant-face
))
689 ("DEF\\s-+\\([-A-Za-z0-9_]+\\)\\s-+\\([A-Za-z0-9]+\\)\\s-*{"
690 (1 font-lock-type-face
)
691 (2 font-lock-constant-face
))
692 ("^\\s-*\\([-A-Za-z0-9_]+\\)\\s-*{"
693 (1 font-lock-function-name-face
))
694 ("^\\s-*\\(geometry\\|appearance\\|material\\)\\s-+\\([-A-Za-z0-9_]+\\)"
695 (2 font-lock-variable-name-face
)))
700 (setq imenu-generic-expression
701 '((nil "^\\([A-Za-z0-9_]+\\)\\s-*{" 1)
703 "DEF\\s-+\\([-A-Za-z0-9_]+\\)\\s-+\\([A-Za-z0-9]+\\)\\s-*{"
705 "Generic Mode for VRML files."))
708 (when (memq 'java-manifest-generic-mode generic-extras-enable-list
)
710 (define-generic-mode java-manifest-generic-mode
720 '(("^Name:\\s-+\\([^\n\r]*\\)$"
721 (1 font-lock-variable-name-face
))
722 ("^\\(Manifest\\|Required\\|Signature\\)-Version:\\s-+\\([^\n\r]*\\)$"
723 (2 font-lock-constant-face
)))
724 '("[mM][aA][nN][iI][fF][eE][sS][tT]\\.[mM][fF]\\'")
726 "Generic mode for Java Manifest files."))
728 ;; Java properties files
729 (when (memq 'java-properties-generic-mode generic-extras-enable-list
)
731 (define-generic-mode java-properties-generic-mode
735 (let ((java-properties-key
736 "\\(\\([-A-Za-z0-9_\\./]\\|\\(\\\\[ =:]\\)\\)+\\)")
737 (java-properties-value
739 ;; Property and value can be separated in a number of different ways:
747 (concat "^" java-properties-key elt java-properties-value
"$")
748 '(1 font-lock-constant-face
)
749 '(4 font-lock-variable-name-face
))))
750 ;; These are the separators
751 '(":\\s-*" "\\s-+" "\\s-*=\\s-*"))))
756 (setq imenu-generic-expression
757 '((nil "^\\([^#! \t\n\r=:]+\\)" 1))))))
758 "Generic mode for Java properties files."))
760 ;; C shell alias definitions
761 (when (memq 'alias-generic-mode generic-extras-enable-list
)
763 (define-generic-mode alias-generic-mode
766 '(("^alias\\s-+\\([-A-Za-z0-9_]+\\)\\s-+"
767 (1 font-lock-variable-name-face
))
768 ("^unalias\\s-+\\([-A-Za-z0-9_]+\\)\\s-*$"
769 (1 font-lock-variable-name-face
)))
774 (setq imenu-generic-expression
775 '((nil "^\\(alias\\|unalias\\)\\s-+\\([-a-zA-Z0-9_]+\\)" 2))))))
776 "Generic mode for C Shell alias files."))
779 ;; Contributed by ACorreir@pervasive-sw.com (Alfred Correira)
780 (when (memq 'rc-generic-mode generic-extras-enable-list
)
782 (define-generic-mode rc-generic-mode
837 ;; the choice of what tokens go where is somewhat arbitrary,
838 ;; as is the choice of which value tokens are included, as
839 ;; the choice of face for each token group
842 (generic-make-keywords-list
851 (generic-make-keywords-list
856 font-lock-function-name-face
)
857 '("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face
)
858 '("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face
)
859 '("^#[ \t]*\\(elif\\|if\\)\\>"
860 ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
861 (1 font-lock-constant-face
)
862 (2 font-lock-variable-name-face nil t
)))
863 '("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
864 (1 font-lock-constant-face
)
865 (2 font-lock-variable-name-face nil t
))))
868 "Generic mode for MS-Windows Resource files."))
870 ;; InstallShield RUL files
871 ;; Contributed by Alfred.Correira@Pervasive.Com
872 ;; Bugfixes by "Rolf Sandau" <Rolf.Sandau@marconi.com>
873 (when (memq 'rul-generic-mode generic-extras-enable-list
)
877 ;;; build the regexp strings using regexp-opt
878 (defconst installshield-statement-keyword-list
897 ;; "goto" -- handled elsewhere
911 "Statement keywords used in InstallShield 3 and 5.")
913 (defconst installshield-system-functions-list
933 "ComponentAddItem" ; differs between IS3 and IS5
934 "ComponentCompareSizeRequired" ; IS5 only
936 "ComponentError" ; IS5 only
937 "ComponentFileEnum" ; IS5 only
938 "ComponentFileInfo" ; IS5 only
939 "ComponentFilterLanguage" ; IS5 only
940 "ComponentFilterOS" ; IS5 only
941 "ComponentGetData" ; IS5 only
942 "ComponentGetItemInfo" ; IS3 only
943 "ComponentGetItemSize" ; differs between IS3 and IS5
944 "ComponentIsItemSelected" ; differs between IS3 and IS5
946 "ComponentMoveData" ; IS5 only
947 "ComponentSelectItem" ; differs between IS3 and IS5
948 "ComponentSetData" ; IS5 only
949 "ComponentSetItemInfo" ; IS3 only
950 "ComponentSetTarget" ; IS5 only
951 "ComponentSetupTypeEnum" ; IS5 only
952 "ComponentSetupTypeGetData" ; IS5 only
953 "ComponentSetupTypeSet" ; IS5 only
955 "ComponentValidate" ; IS5 only
956 "CompressAdd" ; IS3 only
957 "CompressDel" ; IS3 only
958 "CompressEnum" ; IS3 only
959 "CompressGet" ; IS3 only
960 "CompressInfo" ; IS3 only
964 "CreateProgramFolder"
965 "DeinstallSetReference" ; IS5 only
991 "FileSetBeginDefine" ; IS3 only
992 "FileSetEndDefine" ; IS3 only
993 "FileSetPerformEz" ; IS3 only
994 "FileSetPerform" ; IS3 only
995 "FileSetReset" ; IS3 only
996 "FileSetRoot" ; IS3 only
1010 "GetValidDrivesList"
1025 "ListGetFirstString"
1029 "ListSetCurrentItem"
1035 "LongPathToShortPath"
1050 "PlayMMedia" ; IS5 only
1057 "RegDBGetKeyValueEx"
1058 "RegDBSetKeyValueEx"
1059 "RegDBSetDefaultRoot"
1068 "SdComponentAdvCheckSpace"
1069 "SdComponentAdvInit"
1070 "SdComponentAdvUpdateSpace"
1072 "SdComponentDialog2"
1073 "SdComponentDialogAdv"
1074 "SdComponentDialogEx"
1075 "SdComponentDlgCheckSpace"
1078 "SdConfirmRegistration"
1090 "SdGetUserCompanyInfo"
1099 "SdOptionsButtonsInit"
1100 "SdPlugInProductName"
1103 "SdRegExEnableButton"
1108 "SdSetSequentialItems"
1110 "SdSetupTypeEx" ; IS5 only
1121 "SdUpdateComponentSelection"
1127 "SetDisplayEffect" ; IS5 only
1129 "SetForegroundWindow"
1142 "StrRemoveLastSlash"
1156 "System functions defined in InstallShield 3 and 5.")
1158 (defconst installshield-system-variables-list
1162 "CORECOMPONENTHANDLING"
1188 "System variables used in InstallShield 3 and 5.")
1190 (defconst installshield-types-list
1209 "Type keywords used in InstallShield 3 and 5.")
1211 ;;; some might want to skip highlighting these to improve performance
1212 (defconst installshield-funarg-constants-list
1242 "COMP_UPDATE_VERSION"
1261 "DLG_INFO_CHECKSELECTION"
1263 "DLG_INFO_USEDECIMAL"
1264 "DLG_MSG_INFORMATION"
1285 "FILE_ATTR_ARCHIVED"
1286 "FILE_ATTR_DIRECTORY"
1289 "FILE_ATTR_READONLY"
1295 "FILE_MODE_BINARYREADONLY"
1317 "HKEY_LOCAL_MACHINE"
1362 "REGDB_APPPATH_DEFAULT"
1365 "REGDB_ERR_CONNECTIONEXISTS"
1366 "REGDB_ERR_CORRUPTEDREGISTRY"
1367 "REGDB_ERR_INITIALIZATION"
1368 "REGDB_ERR_INVALIDHANDLE"
1369 "REGDB_ERR_INVALIDNAME"
1371 "REGDB_STRING_EXPAND"
1372 "REGDB_STRING_MULTI"
1374 "REGDB_UNINSTALL_NAME"
1418 "Function argument constants used in InstallShield 3 and 5."))
1420 (defvar rul-generic-mode-syntax-table nil
1421 "Syntax table to use in `rul-generic-mode' buffers.")
1423 (setq rul-generic-mode-syntax-table
1424 (make-syntax-table c
++-mode-syntax-table
))
1426 (modify-syntax-entry ?
\r "> b" rul-generic-mode-syntax-table
)
1427 (modify-syntax-entry ?
\n "> b" rul-generic-mode-syntax-table
)
1429 (modify-syntax-entry ?
/ ". 124b" rul-generic-mode-syntax-table
)
1430 (modify-syntax-entry ?
* ". 23" rul-generic-mode-syntax-table
)
1432 ;; here manually instead
1433 (defun generic-rul-mode-setup-function ()
1434 (make-local-variable 'parse-sexp-ignore-comments
)
1435 (make-local-variable 'comment-start
)
1436 (make-local-variable 'comment-start-skip
)
1437 (make-local-variable 'comment-end
)
1438 (setq imenu-generic-expression
1439 '((nil "^function\\s-+\\([A-Za-z0-9_]+\\)" 1))
1440 parse-sexp-ignore-comments t
1444 ;;; comment-start "//"
1445 ;;; comment-start-skip ""
1447 ;; (set-syntax-table rul-generic-mode-syntax-table)
1448 (setq font-lock-syntax-table rul-generic-mode-syntax-table
))
1450 ;; moved mode-definition behind defun-definition to be warning-free - 15.11.02/RSan
1451 (define-generic-mode rul-generic-mode
1452 ;; Using "/*" and "*/" doesn't seem to be working right
1453 '("//" ("/*" .
"*/" ))
1454 (eval-when-compile installshield-statement-keyword-list
)
1457 ;; preprocessor constructs
1458 '("#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)"
1459 1 font-lock-string-face
)
1460 '("#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
1461 (1 font-lock-constant-face
)
1462 (2 font-lock-variable-name-face nil t
))
1463 ;; indirect string constants
1464 '("\\(@[A-Za-z][A-Za-z0-9_]+\\)" 1 font-lock-builtin-face
)
1466 '("[ \t]*\\(\\sw+:\\)" 1 font-lock-constant-face
)
1467 '("\\<\\(goto\\)\\>[ \t]*\\(\\sw+\\)?"
1468 (1 font-lock-keyword-face
)
1469 (2 font-lock-constant-face nil t
))
1471 (generic-make-keywords-list
1472 installshield-system-variables-list
1473 font-lock-variable-name-face
"[^_]" "[^_]")
1475 (generic-make-keywords-list
1476 installshield-system-functions-list
1477 font-lock-function-name-face
"[^_]" "[^_]")
1479 (generic-make-keywords-list
1480 installshield-types-list
1481 font-lock-type-face
"[^_]" "[^_]")
1482 ;; function argument constants
1483 (generic-make-keywords-list
1484 installshield-funarg-constants-list
1485 font-lock-variable-name-face
"[^_]" "[^_]"))) ; is this face the best choice?
1486 '("\\.[rR][uU][lL]\\'")
1487 '(generic-rul-mode-setup-function)
1488 "Generic mode for InstallShield RUL files.")
1490 (define-skeleton rul-if
1491 "Insert an if statement."
1493 "if(" str
") then" \n
1495 ( "other condition, %s: "
1496 > "elseif(" str
") then" \n
1503 (define-skeleton rul-function
1504 "Insert a function statement."
1506 "function " str
" ()" \n
1507 ( "local variables, %s: "
1514 ;; Additions by ACorreir@pervasive-sw.com (Alfred Correira)
1515 (when (memq 'mailrc-generic-mode generic-extras-enable-list
)
1517 (define-generic-mode mailrc-generic-mode
1528 '(("^\\s-*\\(alias\\|group\\)\\s-+\\([-A-Za-z0-9_]+\\)\\s-+\\([^\n\r#]*\\)\\(#.*\\)?$"
1529 (2 font-lock-constant-face
)
1530 (3 font-lock-variable-name-face
))
1531 ("^\\s-*\\(unset\\|set\\|ignore\\)\\s-+\\([-A-Za-z0-9_]+\\)=?\\([^\n\r#]*\\)\\(#.*\\)?$"
1532 (2 font-lock-constant-face
)
1533 (3 font-lock-variable-name-face
))
1534 ("^\\s-*\\(source\\)\\s-+\\([^\n\r#]*\\)\\(#.*\\)?$"
1535 (2 font-lock-variable-name-face
)))
1538 "Mode for mailrc files."))
1541 (when (memq 'inetd-conf-generic-mode generic-extras-enable-list
)
1543 (define-generic-mode inetd-conf-generic-mode
1552 '(("^\\([-A-Za-z0-9_]+\\)" 1 font-lock-type-face
))
1553 '("/etc/inetd.conf\\'")
1557 (setq imenu-generic-expression
1558 '((nil "^\\([-A-Za-z0-9_]+\\)" 1))))))))
1561 (when (memq 'etc-services-generic-mode generic-extras-enable-list
)
1563 (define-generic-mode etc-services-generic-mode
1568 '(("^\\([-A-Za-z0-9_]+\\)\\s-+\\([0-9]+\\)/"
1569 (1 font-lock-type-face
)
1570 (2 font-lock-variable-name-face
)))
1571 '("/etc/services\\'")
1575 (setq imenu-generic-expression
1576 '((nil "^\\([-A-Za-z0-9_]+\\)" 1))))))))
1578 ;; Password and Group files
1579 (when (memq 'etc-passwd-generic-mode generic-extras-enable-list
)
1581 (define-generic-mode etc-passwd-generic-mode
1582 nil
;; No comment characters
1583 '("root") ;; Only one keyword
1589 ;; User name -- Never blank!
1592 ;; Password, UID and GID
1595 (make-list 3 "\\([^:]+\\)")
1598 ;; GECOS/Name -- might be blank
1601 ;; Home directory and shell
1606 '(1 font-lock-type-face
)
1607 '(5 font-lock-variable-name-face
)
1608 '(6 font-lock-constant-face
)
1609 '(7 font-lock-warning-face
))
1610 '("^\\([^:]+\\):\\([^:]*\\):\\([0-9]+\\):\\(.*\\)$"
1611 (1 font-lock-type-face
)
1612 (4 font-lock-variable-name-face
))))
1613 '("/etc/passwd\\'" "/etc/group\\'")
1617 (setq imenu-generic-expression
1618 '((nil "^\\([-A-Za-z0-9_]+\\):" 1))))))))
1621 (when (memq 'etc-fstab-generic-mode generic-extras-enable-list
)
1623 (define-generic-mode etc-fstab-generic-mode
1664 '(("^\\([^# \t]+\\)\\s-+\\([^# \t]+\\)"
1665 (1 font-lock-type-face t
)
1666 (2 font-lock-variable-name-face t
)))
1667 '("/etc/[v]*fstab\\'")
1671 (setq imenu-generic-expression
1672 '((nil "^\\([^# \t]+\\)\\s-+" 1))))))))
1675 (when (memq 'etc-sudoers-generic-mode generic-extras-enable-list
)
1677 (define-generic-mode etc-sudoers-generic-mode
1679 '("User_Alias" "Runas_Alias" "Host_Alias" "Cmnd_Alias"
1680 "NOPASSWD" "PASSWD" "NOEXEC" "EXEC"
1682 '(("\\<\\(root\\|su\\)\\>" 1 font-lock-warning-face
)
1683 ("\\(\\*\\)" 1 font-lock-warning-face
)
1684 ("\\<\\(%[A-Za-z0-9_]+\\)\\>" 1 font-lock-variable-name-face
))
1685 '("/etc/sudoers\\'")
1687 "Generic mode for sudoers configuration files."))
1689 ;; From Jacques Duthen <jacques.duthen@sncf.fr>
1690 (when (memq 'show-tabs-generic-mode generic-extras-enable-list
)
1694 (defconst show-tabs-generic-mode-font-lock-defaults-1
1695 '(;; trailing spaces must come before...
1696 ("[ \t]+$" .
'show-tabs-space
)
1698 ("[^\n\t]\\(\t+\\)" (1 'show-tabs-tab
))))
1700 (defconst show-tabs-generic-mode-font-lock-defaults-2
1701 '(;; trailing spaces must come before...
1702 ("[ \t]+$" .
'show-tabs-space
)
1704 ("\t+" .
'show-tabs-tab
))))
1706 (defface show-tabs-tab
1707 '((((class grayscale
) (background light
)) (:background
"DimGray" :weight bold
))
1708 (((class grayscale
) (background dark
)) (:background
"LightGray" :weight bold
))
1709 (((class color
) (min-colors 88)) (:background
"red1"))
1710 (((class color
)) (:background
"red"))
1712 "Font Lock mode face used to highlight TABs."
1714 (define-obsolete-face-alias 'show-tabs-tab-face
'show-tabs-tab
"22.1")
1716 (defface show-tabs-space
1717 '((((class grayscale
) (background light
)) (:background
"DimGray" :weight bold
))
1718 (((class grayscale
) (background dark
)) (:background
"LightGray" :weight bold
))
1719 (((class color
) (min-colors 88)) (:background
"yellow1"))
1720 (((class color
)) (:background
"yellow"))
1722 "Font Lock mode face used to highlight spaces."
1724 (define-obsolete-face-alias 'show-tabs-space-face
'show-tabs-space
"22.1")
1726 (define-generic-mode show-tabs-generic-mode
1727 nil
;; no comment char
1729 (eval-when-compile show-tabs-generic-mode-font-lock-defaults-1
)
1730 nil
;; no auto-mode-alist
1731 ;; '(show-tabs-generic-mode-hook-fun)
1733 "Generic mode to show tabs and trailing spaces."))
1735 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1737 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1739 (when (memq 'named-boot-generic-mode generic-extras-enable-list
)
1741 (define-generic-mode named-boot-generic-mode
1742 ;; List of comment characters
1745 '("cache" "primary" "secondary" "forwarders" "limit" "options"
1746 "directory" "check-names")
1747 ;; List of additional font-lock-expressions
1748 '(("\\([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\\)" 1 font-lock-constant-face
)
1749 ("^directory\\s-+\\(.*\\)" 1 font-lock-variable-name-face
)
1750 ("^\\(primary\\|cache\\)\\s-+\\([.A-Za-z]+\\)\\s-+\\(.*\\)"
1751 (2 font-lock-variable-name-face
)
1752 (3 font-lock-constant-face
)))
1753 ;; List of additional automode-alist expressions
1754 '("/etc/named.boot\\'")
1755 ;; List of set up functions to call
1758 (when (memq 'named-database-generic-mode generic-extras-enable-list
)
1760 (define-generic-mode named-database-generic-mode
1761 ;; List of comment characters
1764 '("IN" "NS" "CNAME" "SOA" "PTR" "MX" "A")
1765 ;; List of additional font-lock-expressions
1766 '(("\\([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\\)" 1 font-lock-constant-face
)
1767 ("^\\([.A-Za-z0-9]+\\)" 1 font-lock-variable-name-face
))
1768 ;; List of additional auto-mode-alist expressions
1770 ;; List of set up functions to call
1773 (defvar named-database-time-string
"%Y%m%d%H"
1774 "Timestring for named serial numbers.")
1776 (defun named-database-print-serial ()
1777 "Print a serial number based on the current date."
1779 (insert (format-time-string named-database-time-string
(current-time)))))
1781 (when (memq 'resolve-conf-generic-mode generic-extras-enable-list
)
1783 (define-generic-mode resolve-conf-generic-mode
1784 ;; List of comment characters
1787 '("nameserver" "domain" "search" "sortlist" "options")
1788 ;; List of additional font-lock-expressions
1790 ;; List of additional auto-mode-alist expressions
1791 '("/etc/resolv[e]?.conf\\'")
1792 ;; List of set up functions to call
1795 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1796 ;; Modes for spice and common electrical engineering circuit netlist formats
1797 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1799 (when (memq 'spice-generic-mode generic-extras-enable-list
)
1801 (define-generic-mode spice-generic-mode
1818 '(("^\\s-*\\([*].*\\)" 1 font-lock-comment-face
)
1819 (" \\(\\$ .*\\)$" 1 font-lock-comment-face
)
1820 ("^\\(\\$ .*\\)$" 1 font-lock-comment-face
)
1821 ("\\([*].*\\)" 1 font-lock-comment-face
)
1822 ("^\\([+]\\)" 1 font-lock-string-face
)
1823 ("^\\s-*\\([.]\\w+\\>\\)" 1 font-lock-keyword-face
)
1824 ("\\(\\([.]\\|_\\|\\w\\)+\\)\\s-*=" 1 font-lock-variable-name-face
)
1825 ("\\('[^']+'\\)" 1 font-lock-string-face
)
1826 ("\\(\"[^\"]+\"\\)" 1 font-lock-string-face
))
1828 "\\.[sS][pP][iI]\\'"
1829 "\\.[sS][pP][iI][cC][eE]\\'"
1830 "\\.[iI][nN][cC]\\'")
1832 'generic-bracket-support
1833 ;; Make keywords case-insensitive
1836 (setq font-lock-defaults
'(generic-font-lock-keywords nil t
)))))
1837 "Generic mode for SPICE circuit netlist files."))
1839 (when (memq 'ibis-generic-mode generic-extras-enable-list
)
1841 (define-generic-mode ibis-generic-mode
1844 '(("[[]\\([^]]*\\)[]]" 1 font-lock-keyword-face
)
1845 ("\\(\\(_\\|\\w\\)+\\)\\s-*=" 1 font-lock-variable-name-face
))
1846 '("\\.[iI][bB][sS]\\'")
1847 '(generic-bracket-support)
1848 "Generic mode for IBIS circuit netlist files."))
1850 (when (memq 'astap-generic-mode generic-extras-enable-list
)
1852 (define-generic-mode astap-generic-mode
1867 '(("^\\s-*\\([*].*\\)" 1 font-lock-comment-face
)
1868 (";\\s-*\\([*].*\\)" 1 font-lock-comment-face
)
1869 ("^\\s-*\\([.]\\w+\\>\\)" 1 font-lock-keyword-face
)
1870 ("\\('[^']+'\\)" 1 font-lock-string-face
)
1871 ("\\(\"[^\"]+\"\\)" 1 font-lock-string-face
)
1872 ("[(,]\\s-*\\(\\([.]\\|_\\|\\w\\)+\\)\\s-*=" 1 font-lock-variable-name-face
))
1874 "\\.[aA][sS][xX]\\'"
1875 "\\.[aA][sS][tT][aA][pP]\\'"
1876 "\\.[pP][sS][pP]\\'"
1877 "\\.[dD][eE][cC][kK]\\'"
1878 "\\.[gG][oO][dD][aA][tT][aA]")
1880 'generic-bracket-support
1881 ;; Make keywords case-insensitive
1884 (setq font-lock-defaults
'(generic-font-lock-keywords nil t
)))))
1885 "Generic mode for ASTAP circuit netlist files."))
1887 (when (memq 'etc-modules-conf-generic-mode generic-extras-enable-list
)
1889 (define-generic-mode etc-modules-conf-generic-mode
1890 ;; List of comment characters
1908 "generic_stringfile"
1924 ;; List of additional font-lock-expressions
1926 ;; List of additional automode-alist expressions
1927 '("/etc/modules.conf" "/etc/conf.modules")
1928 ;; List of set up functions to call
1931 (provide 'generic-x
)
1933 ;;; generic-x.el ends here