Mercurial > emacs
annotate lisp/textmodes/nroff-mode.el @ 74790:5e43de1ffaac
*** empty log message ***
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Thu, 21 Dec 2006 21:49:21 +0000 |
parents | a747e863fd26 |
children | e3694f1cb928 c5406394f567 |
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 |
64751
5b1a238fcbb4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1994, 1995, 1997, 2001, 2002, 2003, |
68599
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
4 ;; 2004, 2005, 2006 Free Software Foundation, Inc. |
845 | 5 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
6 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: wp |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
8 |
36 | 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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
789
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 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 | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
36 | 25 |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
26 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
27 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
28 ;; 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
|
29 ;; 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
|
30 ;; 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
|
31 ;; 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
|
32 ;; 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
|
33 |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
34 ;; 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
|
35 ;; as they should. |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
36 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
37 ;;; Code: |
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
38 |
19475 | 39 (defgroup nroff nil |
40 "Nroff mode." | |
66963
a11fdee52c05
Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
64751
diff
changeset
|
41 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
20082
5aeeb9b32ee4
(nroff): Moved from `editing' to `wp'.
Karl Heuer <kwzh@gnu.org>
parents:
19475
diff
changeset
|
42 :group 'wp |
19475 | 43 :prefix "nroff-") |
44 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
45 |
19475 | 46 (defcustom nroff-electric-mode nil |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
47 "Non-nil means automatically closing requests when you insert an open." |
19475 | 48 :group 'nroff |
49 :type 'boolean) | |
18425
847ee3e08152
(nroff-electric-mode): New defvar.
Richard M. Stallman <rms@gnu.org>
parents:
18383
diff
changeset
|
50 |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
51 (defvar nroff-mode-map |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
52 (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
|
53 (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
|
54 (define-key map "\es" 'center-line) |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
55 (define-key map "\e?" 'nroff-count-text-lines) |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
56 (define-key map "\n" 'nroff-electric-newline) |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
57 (define-key map "\en" 'nroff-forward-text-line) |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
58 (define-key map "\ep" 'nroff-backward-text-line) |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
59 map) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
60 "Major mode keymap for `nroff-mode'.") |
36 | 61 |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
62 (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
|
63 (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
|
64 ;; " 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
|
65 ;; (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
|
66 ;; ' used otherwise). |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
67 (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
|
68 ;; 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
|
69 (modify-syntax-entry ?\\ "\\ 1" st) |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
70 (modify-syntax-entry ?\n ">" st) |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
71 st) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
72 "Syntax table used while in `nroff-mode'.") |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
73 |
49025 | 74 (defvar nroff-imenu-expression |
75 ;; man headers: | |
76 '((nil "^\\.SH \"?\\([^\"\n]*\\)\"?$" 1))) | |
77 | |
19475 | 78 (defcustom nroff-font-lock-keywords |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
79 (list |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
80 ;; 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
|
81 ;; 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
|
82 ;; 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
|
83 ;; fontified as well. |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
84 "^[.']\\s-*\\sw+" |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
85 ;; 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
|
86 ;; like \-, \(em (standard troff) and \f[bar] (groff |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
87 ;; 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
|
88 ;; 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
|
89 ;; arguments in common cases, like \f. |
68599
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
90 (concat "\\\\" ; backslash |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
91 "\\(" ; followed by various possibilities |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
92 (mapconcat 'identity |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
93 '("[f*n]*\\[.+?]" ; some groff extensions |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
94 "(.." ; two chars after ( |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
95 "[^(\"]" ; single char escape |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
96 ) "\\|") |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
97 "\\)") |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
98 ) |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
99 "Font-lock highlighting control in `nroff-mode'." |
19475 | 100 :group 'nroff |
101 :type '(repeat regexp)) | |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
102 |
49025 | 103 (defcustom nroff-mode-hook nil |
104 "Hook run by function `nroff-mode'." | |
105 :type 'hook | |
106 :group 'nroff) | |
107 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
108 ;;;###autoload |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
109 (define-derived-mode nroff-mode text-mode "Nroff" |
36 | 110 "Major mode for editing text intended for nroff to format. |
111 \\{nroff-mode-map} | |
233 | 112 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. |
113 Also, try `nroff-electric-mode', for automatically inserting | |
36 | 114 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
|
115 (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
|
116 ;; 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
|
117 ;; 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
|
118 ;; beginning. |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
119 '(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
|
120 (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
|
121 (set (make-local-variable 'outline-level) 'nroff-outline-level) |
36 | 122 ;; 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
|
123 (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
|
124 (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
|
125 (concat "[.']\\|" paragraph-start)) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
126 (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
|
127 (concat "[.']\\|" paragraph-separate)) |
36 | 128 ;; 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
|
129 (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
|
130 (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
|
131 (set (make-local-variable 'comment-column) 24) |
49025 | 132 (set (make-local-variable 'comment-indent-function) 'nroff-comment-indent) |
133 (set (make-local-variable 'imenu-generic-expression) nroff-imenu-expression)) | |
36 | 134 |
6075
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
135 (defun nroff-outline-level () |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
136 (save-excursion |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
137 (looking-at outline-regexp) |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
138 (skip-chars-forward ".H ") |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
139 (string-to-number (buffer-substring (point) (+ 1 (point)))))) |
6075
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
140 |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
141 ;; Compute how much to indent a comment in nroff/troff source. |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
142 ;; By mit-erl!gildea April 86 |
36 | 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 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
164 (defun nroff-count-text-lines (start end &optional print) |
36 | 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 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
171 (message "Region has %d text lines" (nroff-count-text-lines start end)) |
36 | 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 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
178 (defun nroff-forward-text-line (&optional cnt) |
36 | 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 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
196 (defun nroff-backward-text-line (&optional cnt) |
36 | 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") | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
200 (nroff-forward-text-line (- cnt))) |
36 | 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 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
238 (defun nroff-electric-newline (arg) |
36 | 239 "Insert newline for nroff mode; special if electric-nroff mode. |
233 | 240 In `electric-nroff-mode', if ending a line containing an nroff opening request, |
36 | 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 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
259 (define-minor-mode nroff-electric-mode |
233 | 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." | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
265 :lighter " Electric" |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
266 (or (derived-mode-p 'nroff-mode) (error "Must be in nroff mode"))) |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
267 |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
268 ;; Old names that were not namespace clean. |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
269 (define-obsolete-function-alias 'count-text-lines 'nroff-count-text-lines "22.1") |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
270 (define-obsolete-function-alias 'forward-text-line 'nroff-forward-text-line "22.1") |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
271 (define-obsolete-function-alias 'backward-text-line 'nroff-backward-text-line "22.1") |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
272 (define-obsolete-function-alias 'electric-nroff-newline 'nroff-electric-newline "22.1") |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
273 (define-obsolete-function-alias 'electric-nroff-mode 'nroff-electric-mode "22.1") |
36 | 274 |
18383 | 275 (provide 'nroff-mode) |
276 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
277 ;; arch-tag: 6e276340-6c65-4f65-b4e3-0ca431ddfb6c |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
278 ;;; nroff-mode.el ends here |