Add :link (custom-group-link font-lock-faces) to defgroup.
[bpt/emacs.git] / lisp / textmodes / nroff-mode.el
1 ;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source
2
3 ;; Copyright (C) 1985, 1986, 1994, 1995, 1997, 2001, 2002, 2003,
4 ;; 2004, 2005 Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: wp
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; This package is a major mode for editing nroff source code. It knows
29 ;; about various nroff constructs, ms, mm, and me macros, and will fill
30 ;; and indent paragraphs properly in their presence. It also includes
31 ;; a command to count text lines (excluding nroff constructs), a command
32 ;; to center a line, and movement commands that know how to skip macros.
33
34 ;; Paragraph filling and line-counting currently don't respect comments,
35 ;; as they should.
36
37 ;;; Code:
38
39 (defgroup nroff nil
40 "Nroff mode."
41 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
42 :group 'wp
43 :prefix "nroff-")
44
45 (defcustom nroff-electric-mode nil
46 "*Non-nil means automatically closing requests when you insert an open."
47 :group 'nroff
48 :type 'boolean)
49
50 (defvar nroff-mode-map
51 (let ((map (make-sparse-keymap)))
52 (define-key map "\t" 'tab-to-tab-stop)
53 (define-key map "\es" 'center-line)
54 (define-key map "\e?" 'count-text-lines)
55 (define-key map "\n" 'electric-nroff-newline)
56 (define-key map "\en" 'forward-text-line)
57 (define-key map "\ep" 'backward-text-line)
58 map)
59 "Major mode keymap for `nroff-mode'.")
60
61 (defvar nroff-mode-syntax-table
62 (let ((st (copy-syntax-table text-mode-syntax-table)))
63 ;; " isn't given string quote syntax in text-mode but it
64 ;; (arguably) should be for use round nroff arguments (with ` and
65 ;; ' used otherwise).
66 (modify-syntax-entry ?\" "\" 2" st)
67 ;; Comments are delimited by \" and newline.
68 (modify-syntax-entry ?\\ "\\ 1" st)
69 (modify-syntax-entry ?\n "> 1" st)
70 st)
71 "Syntax table used while in `nroff-mode'.")
72
73 (defvar nroff-imenu-expression
74 ;; man headers:
75 '((nil "^\\.SH \"?\\([^\"\n]*\\)\"?$" 1)))
76
77 (defcustom nroff-font-lock-keywords
78 (list
79 ;; Directives are . or ' at start of line, followed by
80 ;; optional whitespace, then command (which my be longer than
81 ;; 2 characters in groff). Perhaps the arguments should be
82 ;; fontified as well.
83 "^[.']\\s-*\\sw+"
84 ;; There are numerous groff escapes; the following get things
85 ;; like \-, \(em (standard troff) and \f[bar] (groff
86 ;; variants). This won't currently do groff's \A'foo' and
87 ;; the like properly. One might expect it to highlight an escape's
88 ;; arguments in common cases, like \f.
89 (concat "\\\\" ; backslash
90 "\\(" ; followed by various possibilities
91 (mapconcat 'identity
92 '("[f*n]*\\[.+]" ; some groff extensions
93 "(.." ; two chars after (
94 "[^(\"]" ; single char escape
95 ) "\\|")
96 "\\)")
97 )
98 "Font-lock highlighting control in `nroff-mode'."
99 :group 'nroff
100 :type '(repeat regexp))
101
102 (defcustom nroff-mode-hook nil
103 "Hook run by function `nroff-mode'."
104 :type 'hook
105 :group 'nroff)
106
107 ;;;###autoload
108 (define-derived-mode nroff-mode text-mode "Nroff"
109 "Major mode for editing text intended for nroff to format.
110 \\{nroff-mode-map}
111 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
112 Also, try `nroff-electric-mode', for automatically inserting
113 closing requests for requests that are used in matched pairs."
114 (set (make-local-variable 'font-lock-defaults)
115 ;; SYNTAX-BEGIN is set to backward-paragraph to avoid slow-down
116 ;; near the end of large buffers due to searching to buffer's
117 ;; beginning.
118 '(nroff-font-lock-keywords nil t nil backward-paragraph))
119 (set (make-local-variable 'nroff-electric-mode) nil)
120 (set (make-local-variable 'outline-regexp) "\\.H[ ]+[1-7]+ ")
121 (set (make-local-variable 'outline-level) 'nroff-outline-level)
122 ;; now define a bunch of variables for use by commands in this mode
123 (set (make-local-variable 'page-delimiter) "^\\.\\(bp\\|SK\\|OP\\)")
124 (set (make-local-variable 'paragraph-start)
125 (concat "[.']\\|" paragraph-start))
126 (set (make-local-variable 'paragraph-separate)
127 (concat "[.']\\|" paragraph-separate))
128 ;; comment syntax added by mit-erl!gildea 18 Apr 86
129 (set (make-local-variable 'comment-start) "\\\" ")
130 (set (make-local-variable 'comment-start-skip) "\\\\\"[ \t]*")
131 (set (make-local-variable 'comment-column) 24)
132 (set (make-local-variable 'comment-indent-function) 'nroff-comment-indent)
133 (set (make-local-variable 'imenu-generic-expression) nroff-imenu-expression))
134
135 (defun nroff-outline-level ()
136 (save-excursion
137 (looking-at outline-regexp)
138 (skip-chars-forward ".H ")
139 (string-to-number (buffer-substring (point) (+ 1 (point))))))
140
141 ;;; Compute how much to indent a comment in nroff/troff source.
142 ;;; By mit-erl!gildea April 86
143 (defun nroff-comment-indent ()
144 "Compute indent for an nroff/troff comment.
145 Puts a full-stop before comments on a line by themselves."
146 (let ((pt (point)))
147 (unwind-protect
148 (progn
149 (skip-chars-backward " \t")
150 (if (bolp)
151 (progn
152 (setq pt (1+ pt))
153 (insert ?.)
154 1)
155 (if (save-excursion
156 (backward-char 1)
157 (looking-at "^[.']"))
158 1
159 (max comment-column
160 (* 8 (/ (+ (current-column)
161 9) 8)))))) ; add 9 to ensure at least two blanks
162 (goto-char pt))))
163
164 (defun count-text-lines (start end &optional print)
165 "Count lines in region, except for nroff request lines.
166 All lines not starting with a period are counted up.
167 Interactively, print result in echo area.
168 Noninteractively, return number of non-request lines from START to END."
169 (interactive "r\np")
170 (if print
171 (message "Region has %d text lines" (count-text-lines start end))
172 (save-excursion
173 (save-restriction
174 (narrow-to-region start end)
175 (goto-char (point-min))
176 (- (buffer-size) (forward-text-line (buffer-size)))))))
177
178 (defun forward-text-line (&optional cnt)
179 "Go forward one nroff text line, skipping lines of nroff requests.
180 An argument is a repeat count; if negative, move backward."
181 (interactive "p")
182 (if (not cnt) (setq cnt 1))
183 (while (and (> cnt 0) (not (eobp)))
184 (forward-line 1)
185 (while (and (not (eobp)) (looking-at "[.']."))
186 (forward-line 1))
187 (setq cnt (- cnt 1)))
188 (while (and (< cnt 0) (not (bobp)))
189 (forward-line -1)
190 (while (and (not (bobp))
191 (looking-at "[.']."))
192 (forward-line -1))
193 (setq cnt (+ cnt 1)))
194 cnt)
195
196 (defun backward-text-line (&optional cnt)
197 "Go backward one nroff text line, skipping lines of nroff requests.
198 An argument is a repeat count; negative means move forward."
199 (interactive "p")
200 (forward-text-line (- cnt)))
201
202 (defconst nroff-brace-table
203 '((".(b" . ".)b")
204 (".(l" . ".)l")
205 (".(q" . ".)q")
206 (".(c" . ".)c")
207 (".(x" . ".)x")
208 (".(z" . ".)z")
209 (".(d" . ".)d")
210 (".(f" . ".)f")
211 (".LG" . ".NL")
212 (".SM" . ".NL")
213 (".LD" . ".DE")
214 (".CD" . ".DE")
215 (".BD" . ".DE")
216 (".DS" . ".DE")
217 (".DF" . ".DE")
218 (".FS" . ".FE")
219 (".KS" . ".KE")
220 (".KF" . ".KE")
221 (".LB" . ".LE")
222 (".AL" . ".LE")
223 (".BL" . ".LE")
224 (".DL" . ".LE")
225 (".ML" . ".LE")
226 (".RL" . ".LE")
227 (".VL" . ".LE")
228 (".RS" . ".RE")
229 (".TS" . ".TE")
230 (".EQ" . ".EN")
231 (".PS" . ".PE")
232 (".BS" . ".BE")
233 (".G1" . ".G2") ; grap
234 (".na" . ".ad b")
235 (".nf" . ".fi")
236 (".de" . "..")))
237
238 (defun electric-nroff-newline (arg)
239 "Insert newline for nroff mode; special if electric-nroff mode.
240 In `electric-nroff-mode', if ending a line containing an nroff opening request,
241 automatically inserts the matching closing request after point."
242 (interactive "P")
243 (let ((completion (save-excursion
244 (beginning-of-line)
245 (and (null arg)
246 nroff-electric-mode
247 (<= (point) (- (point-max) 3))
248 (cdr (assoc (buffer-substring (point)
249 (+ 3 (point)))
250 nroff-brace-table)))))
251 (needs-nl (not (looking-at "[ \t]*$"))))
252 (if (null completion)
253 (newline (prefix-numeric-value arg))
254 (save-excursion
255 (insert "\n\n" completion)
256 (if needs-nl (insert "\n")))
257 (forward-char 1))))
258
259 (defun electric-nroff-mode (&optional arg)
260 "Toggle `nroff-electric-newline' minor mode.
261 `nroff-electric-newline' forces Emacs to check for an nroff request at the
262 beginning of the line, and insert the matching closing request if necessary.
263 This command toggles that mode (off->on, on->off), with an argument,
264 turns it on iff arg is positive, otherwise off."
265 (interactive "P")
266 (or (eq major-mode 'nroff-mode) (error "Must be in nroff mode"))
267 (or (assq 'nroff-electric-mode minor-mode-alist)
268 (setq minor-mode-alist (append minor-mode-alist
269 (list '(nroff-electric-mode
270 " Electric")))))
271 (setq nroff-electric-mode
272 (cond ((null arg) (null nroff-electric-mode))
273 (t (> (prefix-numeric-value arg) 0)))))
274
275 (provide 'nroff-mode)
276
277 ;;; arch-tag: 6e276340-6c65-4f65-b4e3-0ca431ddfb6c
278 ;;; nroff-mode.el ends here