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