1 ;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source
3 ;; Copyright (C) 1985, 1986, 1994, 1995 Free Software Foundation, Inc.
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 2, or (at your option)
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., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; This package is a major mode for editing nroff source code. It knows
28 ;; about various nroff constructs, ms, mm, and me macros, and will fill
29 ;; and indent paragraphs properly in their presence. It also includes
30 ;; a command to count text lines (excluding nroff constructs), a command
31 ;; to center a line, and movement commands that know how to skip macros.
33 ;; Paragraph filling and line-counting currently don't respect comments,
43 (defvar nroff-mode-abbrev-table nil
44 "Abbrev table used while in nroff mode.")
45 (define-abbrev-table 'nroff-mode-abbrev-table
())
47 (defcustom nroff-electric-mode nil
48 "*Non-nil means automatically closing requests when you insert an open."
52 (defvar nroff-mode-map nil
53 "Major mode keymap for nroff mode.")
54 (if (not nroff-mode-map
)
56 (setq nroff-mode-map
(make-sparse-keymap))
57 (define-key nroff-mode-map
"\t" 'tab-to-tab-stop
)
58 (define-key nroff-mode-map
"\es" 'center-line
)
59 (define-key nroff-mode-map
"\e?" 'count-text-lines
)
60 (define-key nroff-mode-map
"\n" 'electric-nroff-newline
)
61 (define-key nroff-mode-map
"\en" 'forward-text-line
)
62 (define-key nroff-mode-map
"\ep" 'backward-text-line
)))
64 (defvar nroff-mode-syntax-table nil
65 "Syntax table used while in nroff mode.")
67 (defcustom nroff-font-lock-keywords
69 ;; Directives are . or ' at start of line, followed by
70 ;; optional whitespace, then command (which my be longer than
71 ;; 2 characters in groff). Perhaps the arguments should be
74 ;; There are numerous groff escapes; the following get things
75 ;; like \-, \(em (standard troff) and \f[bar] (groff
76 ;; variants). This won't currently do groff's \A'foo' and
77 ;; the like properly. One might expect it to highlight an escape's
78 ;; arguments in common cases, like \f.
79 (concat "\\\\" ; backslash
80 "\\(" ; followed by various possibilities
82 '("[f*n]*\\[.+]" ; some groff extensions
83 "(.." ; two chars after (
84 "[^(\"]" ; single char escape
88 "Font-lock highlighting control in nroff-mode."
90 :type
'(repeat regexp
))
94 "Major mode for editing text intended for nroff to format.
96 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
97 Also, try `nroff-electric-mode', for automatically inserting
98 closing requests for requests that are used in matched pairs."
100 (kill-all-local-variables)
101 (use-local-map nroff-mode-map
)
102 (setq mode-name
"Nroff")
103 (setq major-mode
'nroff-mode
)
104 (if nroff-mode-syntax-table
106 (setq nroff-mode-syntax-table
(copy-syntax-table text-mode-syntax-table
))
107 ;; " isn't given string quote syntax in text-mode but it
108 ;; (arguably) should be for use round nroff arguments (with ` and
109 ;; ' used otherwise).
110 (modify-syntax-entry ?
\" "\" 2" nroff-mode-syntax-table
)
111 ;; Comments are delimited by \" and newline.
112 (modify-syntax-entry ?
\\ "\\ 1" nroff-mode-syntax-table
)
113 (modify-syntax-entry ?
\n "> 1" nroff-mode-syntax-table
))
114 (set-syntax-table nroff-mode-syntax-table
)
115 (make-local-variable 'font-lock-defaults
)
116 (setq font-lock-defaults
'(nroff-font-lock-keywords nil t
))
117 (setq local-abbrev-table nroff-mode-abbrev-table
)
118 (make-local-variable 'nroff-electric-mode
)
119 (setq nroff-electric-mode nil
)
120 (make-local-variable 'outline-regexp
)
121 (setq outline-regexp
"\\.H[ ]+[1-7]+ ")
122 (make-local-variable 'outline-level
)
123 (setq outline-level
'nroff-outline-level
)
124 ;; now define a bunch of variables for use by commands in this mode
125 (make-local-variable 'page-delimiter
)
126 (setq page-delimiter
"^\\.\\(bp\\|SK\\|OP\\)")
127 (make-local-variable 'paragraph-start
)
128 (setq paragraph-start
(concat "[.']\\|" paragraph-start
))
129 (make-local-variable 'paragraph-separate
)
130 (setq paragraph-separate
(concat "[.']\\|" paragraph-separate
))
131 ;; comment syntax added by mit-erl!gildea 18 Apr 86
132 (make-local-variable 'comment-start
)
133 (setq comment-start
"\\\" ")
134 (make-local-variable 'comment-start-skip
)
135 (setq comment-start-skip
"\\\\\"[ \t]*")
136 (make-local-variable 'comment-column
)
137 (setq comment-column
24)
138 (make-local-variable 'comment-indent-function
)
139 (setq comment-indent-function
'nroff-comment-indent
)
140 (run-hooks 'text-mode-hook
'nroff-mode-hook
))
142 (defun nroff-outline-level ()
144 (looking-at outline-regexp
)
145 (skip-chars-forward ".H ")
146 (string-to-int (buffer-substring (point) (+ 1 (point))))))
148 ;;; Compute how much to indent a comment in nroff/troff source.
149 ;;; By mit-erl!gildea April 86
150 (defun nroff-comment-indent ()
151 "Compute indent for an nroff/troff comment.
152 Puts a full-stop before comments on a line by themselves."
156 (skip-chars-backward " \t")
164 (looking-at "^[.']"))
167 (* 8 (/ (+ (current-column)
168 9) 8)))))) ; add 9 to ensure at least two blanks
171 (defun count-text-lines (start end
&optional print
)
172 "Count lines in region, except for nroff request lines.
173 All lines not starting with a period are counted up.
174 Interactively, print result in echo area.
175 Noninteractively, return number of non-request lines from START to END."
178 (message "Region has %d text lines" (count-text-lines start end
))
181 (narrow-to-region start end
)
182 (goto-char (point-min))
183 (- (buffer-size) (forward-text-line (buffer-size)))))))
185 (defun forward-text-line (&optional cnt
)
186 "Go forward one nroff text line, skipping lines of nroff requests.
187 An argument is a repeat count; if negative, move backward."
189 (if (not cnt
) (setq cnt
1))
190 (while (and (> cnt
0) (not (eobp)))
192 (while (and (not (eobp)) (looking-at "[.']."))
194 (setq cnt
(- cnt
1)))
195 (while (and (< cnt
0) (not (bobp)))
197 (while (and (not (bobp))
198 (looking-at "[.']."))
200 (setq cnt
(+ cnt
1)))
203 (defun backward-text-line (&optional cnt
)
204 "Go backward one nroff text line, skipping lines of nroff requests.
205 An argument is a repeat count; negative means move forward."
207 (forward-text-line (- cnt
)))
209 (defconst nroff-brace-table
240 (".G1" .
".G2") ; grap
245 (defun electric-nroff-newline (arg)
246 "Insert newline for nroff mode; special if electric-nroff mode.
247 In `electric-nroff-mode', if ending a line containing an nroff opening request,
248 automatically inserts the matching closing request after point."
250 (let ((completion (save-excursion
254 (<= (point) (- (point-max) 3))
255 (cdr (assoc (buffer-substring (point)
257 nroff-brace-table
)))))
258 (needs-nl (not (looking-at "[ \t]*$"))))
259 (if (null completion
)
260 (newline (prefix-numeric-value arg
))
262 (insert "\n\n" completion
)
263 (if needs-nl
(insert "\n")))
266 (defun electric-nroff-mode (&optional arg
)
267 "Toggle `nroff-electric-newline' minor mode.
268 `nroff-electric-newline' forces Emacs to check for an nroff request at the
269 beginning of the line, and insert the matching closing request if necessary.
270 This command toggles that mode (off->on, on->off), with an argument,
271 turns it on iff arg is positive, otherwise off."
273 (or (eq major-mode
'nroff-mode
) (error "Must be in nroff mode"))
274 (or (assq 'nroff-electric-mode minor-mode-alist
)
275 (setq minor-mode-alist
(append minor-mode-alist
276 (list '(nroff-electric-mode
278 (setq nroff-electric-mode
279 (cond ((null arg
) (null nroff-electric-mode
))
280 (t (> (prefix-numeric-value arg
) 0)))))
282 (provide 'nroff-mode
)
284 ;;; nroff-mode.el ends here