Mercurial > emacs
annotate lisp/textmodes/nroff-mode.el @ 92569:2700d0403f58
*** empty log message ***
author | Alan Mackenzie <acm@muc.de> |
---|---|
date | Fri, 07 Mar 2008 22:25:42 +0000 |
parents | 107ccd98fa12 |
children | 606f2d163a64 44fab469d68d |
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, |
79719 | 4 ;; 2004, 2005, 2006, 2007, 2008 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 | |
78225
b6d25790aab2
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, 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. |
81650 | 69 ;; And in groff also \# to newline. |
70 (modify-syntax-entry ?# ". 2" st) | |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
71 (modify-syntax-entry ?\\ "\\ 1" st) |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
72 (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
|
73 st) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
74 "Syntax table used while in `nroff-mode'.") |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
75 |
49025 | 76 (defvar nroff-imenu-expression |
77 ;; man headers: | |
78 '((nil "^\\.SH \"?\\([^\"\n]*\\)\"?$" 1))) | |
79 | |
19475 | 80 (defcustom nroff-font-lock-keywords |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
81 (list |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
82 ;; 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
|
83 ;; 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
|
84 ;; 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
|
85 ;; fontified as well. |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
86 "^[.']\\s-*\\sw+" |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
87 ;; 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
|
88 ;; like \-, \(em (standard troff) and \f[bar] (groff |
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
89 ;; 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
|
90 ;; 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
|
91 ;; 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
|
92 (concat "\\\\" ; backslash |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
93 "\\(" ; 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
|
94 (mapconcat 'identity |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
95 '("[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
|
96 "(.." ; two chars after ( |
81650 | 97 "[^(\"#]" ; single char escape |
68599
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
98 ) "\\|") |
8b39fc927b5e
* textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be
Werner LEMBERG <wl@gnu.org>
parents:
66963
diff
changeset
|
99 "\\)") |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
100 ) |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
101 "Font-lock highlighting control in `nroff-mode'." |
19475 | 102 :group 'nroff |
103 :type '(repeat regexp)) | |
12595
cf258211ea5b
(font-lock-defaults): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
10886
diff
changeset
|
104 |
49025 | 105 (defcustom nroff-mode-hook nil |
106 "Hook run by function `nroff-mode'." | |
107 :type 'hook | |
108 :group 'nroff) | |
109 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
110 ;;;###autoload |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
111 (define-derived-mode nroff-mode text-mode "Nroff" |
36 | 112 "Major mode for editing text intended for nroff to format. |
113 \\{nroff-mode-map} | |
233 | 114 Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'. |
115 Also, try `nroff-electric-mode', for automatically inserting | |
36 | 116 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
|
117 (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
|
118 ;; 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
|
119 ;; 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
|
120 ;; beginning. |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
121 '(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
|
122 (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
|
123 (set (make-local-variable 'outline-level) 'nroff-outline-level) |
36 | 124 ;; 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
|
125 (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
|
126 (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
|
127 (concat "[.']\\|" paragraph-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 'paragraph-separate) |
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
129 (concat "[.']\\|" paragraph-separate)) |
36 | 130 ;; 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
|
131 (set (make-local-variable 'comment-start) "\\\" ") |
81650 | 132 (set (make-local-variable 'comment-start-skip) "\\\\[\"#][ \t]*") |
39570
d16a58a98f40
(nroff-mode-abbrev-table, nroff-mode): Use define-derived-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
35895
diff
changeset
|
133 (set (make-local-variable 'comment-column) 24) |
49025 | 134 (set (make-local-variable 'comment-indent-function) 'nroff-comment-indent) |
85906
e8570ba362b2
(nroff-mode): Set comment-insert-comment-function rather than
Glenn Morris <rgm@gnu.org>
parents:
85858
diff
changeset
|
135 (set (make-local-variable 'comment-insert-comment-function) |
e8570ba362b2
(nroff-mode): Set comment-insert-comment-function rather than
Glenn Morris <rgm@gnu.org>
parents:
85858
diff
changeset
|
136 'nroff-insert-comment-function) |
49025 | 137 (set (make-local-variable 'imenu-generic-expression) nroff-imenu-expression)) |
36 | 138 |
6075
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
139 (defun nroff-outline-level () |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
140 (save-excursion |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
141 (looking-at outline-regexp) |
b23452652292
(nroff-mode): Set outline-regexp and outline-level.
Richard M. Stallman <rms@gnu.org>
parents:
3143
diff
changeset
|
142 (skip-chars-forward ".H ") |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
143 (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
|
144 |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
145 ;; 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
|
146 ;; By mit-erl!gildea April 86 |
36 | 147 (defun nroff-comment-indent () |
148 "Compute indent for an nroff/troff comment. | |
149 Puts a full-stop before comments on a line by themselves." | |
150 (let ((pt (point))) | |
151 (unwind-protect | |
152 (progn | |
153 (skip-chars-backward " \t") | |
154 (if (bolp) | |
155 (progn | |
85906
e8570ba362b2
(nroff-mode): Set comment-insert-comment-function rather than
Glenn Morris <rgm@gnu.org>
parents:
85858
diff
changeset
|
156 ;; FIXME delete-horizontal-space? |
36 | 157 (setq pt (1+ pt)) |
158 (insert ?.) | |
159 1) | |
160 (if (save-excursion | |
161 (backward-char 1) | |
162 (looking-at "^[.']")) | |
163 1 | |
164 (max comment-column | |
165 (* 8 (/ (+ (current-column) | |
166 9) 8)))))) ; add 9 to ensure at least two blanks | |
167 (goto-char pt)))) | |
168 | |
79308
c9be678e700b
(nroff-mode): Set indent-line-function.
Glenn Morris <rgm@gnu.org>
parents:
78482
diff
changeset
|
169 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01869.html |
85906
e8570ba362b2
(nroff-mode): Set comment-insert-comment-function rather than
Glenn Morris <rgm@gnu.org>
parents:
85858
diff
changeset
|
170 (defun nroff-insert-comment-function () |
e8570ba362b2
(nroff-mode): Set comment-insert-comment-function rather than
Glenn Morris <rgm@gnu.org>
parents:
85858
diff
changeset
|
171 "Function for `comment-insert-comment-function' in `nroff-mode'." |
e8570ba362b2
(nroff-mode): Set comment-insert-comment-function rather than
Glenn Morris <rgm@gnu.org>
parents:
85858
diff
changeset
|
172 (indent-to (nroff-comment-indent)) |
e8570ba362b2
(nroff-mode): Set comment-insert-comment-function rather than
Glenn Morris <rgm@gnu.org>
parents:
85858
diff
changeset
|
173 (insert comment-start)) |
79308
c9be678e700b
(nroff-mode): Set indent-line-function.
Glenn Morris <rgm@gnu.org>
parents:
78482
diff
changeset
|
174 |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
175 (defun nroff-count-text-lines (start end &optional print) |
36 | 176 "Count lines in region, except for nroff request lines. |
177 All lines not starting with a period are counted up. | |
178 Interactively, print result in echo area. | |
179 Noninteractively, return number of non-request lines from START to END." | |
180 (interactive "r\np") | |
181 (if print | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
182 (message "Region has %d text lines" (nroff-count-text-lines start end)) |
36 | 183 (save-excursion |
184 (save-restriction | |
185 (narrow-to-region start end) | |
186 (goto-char (point-min)) | |
79308
c9be678e700b
(nroff-mode): Set indent-line-function.
Glenn Morris <rgm@gnu.org>
parents:
78482
diff
changeset
|
187 (- (buffer-size) (nroff-forward-text-line (buffer-size))))))) |
36 | 188 |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
189 (defun nroff-forward-text-line (&optional cnt) |
36 | 190 "Go forward one nroff text line, skipping lines of nroff requests. |
191 An argument is a repeat count; if negative, move backward." | |
192 (interactive "p") | |
193 (if (not cnt) (setq cnt 1)) | |
194 (while (and (> cnt 0) (not (eobp))) | |
195 (forward-line 1) | |
196 (while (and (not (eobp)) (looking-at "[.'].")) | |
197 (forward-line 1)) | |
198 (setq cnt (- cnt 1))) | |
199 (while (and (< cnt 0) (not (bobp))) | |
200 (forward-line -1) | |
201 (while (and (not (bobp)) | |
202 (looking-at "[.'].")) | |
203 (forward-line -1)) | |
204 (setq cnt (+ cnt 1))) | |
205 cnt) | |
206 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
207 (defun nroff-backward-text-line (&optional cnt) |
36 | 208 "Go backward one nroff text line, skipping lines of nroff requests. |
209 An argument is a repeat count; negative means move forward." | |
210 (interactive "p") | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
211 (nroff-forward-text-line (- cnt))) |
36 | 212 |
213 (defconst nroff-brace-table | |
214 '((".(b" . ".)b") | |
215 (".(l" . ".)l") | |
216 (".(q" . ".)q") | |
217 (".(c" . ".)c") | |
218 (".(x" . ".)x") | |
219 (".(z" . ".)z") | |
220 (".(d" . ".)d") | |
221 (".(f" . ".)f") | |
222 (".LG" . ".NL") | |
223 (".SM" . ".NL") | |
224 (".LD" . ".DE") | |
225 (".CD" . ".DE") | |
226 (".BD" . ".DE") | |
227 (".DS" . ".DE") | |
228 (".DF" . ".DE") | |
229 (".FS" . ".FE") | |
230 (".KS" . ".KE") | |
231 (".KF" . ".KE") | |
232 (".LB" . ".LE") | |
233 (".AL" . ".LE") | |
234 (".BL" . ".LE") | |
235 (".DL" . ".LE") | |
236 (".ML" . ".LE") | |
237 (".RL" . ".LE") | |
238 (".VL" . ".LE") | |
239 (".RS" . ".RE") | |
240 (".TS" . ".TE") | |
241 (".EQ" . ".EN") | |
242 (".PS" . ".PE") | |
243 (".BS" . ".BE") | |
244 (".G1" . ".G2") ; grap | |
245 (".na" . ".ad b") | |
246 (".nf" . ".fi") | |
247 (".de" . ".."))) | |
248 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
249 (defun nroff-electric-newline (arg) |
36 | 250 "Insert newline for nroff mode; special if electric-nroff mode. |
233 | 251 In `electric-nroff-mode', if ending a line containing an nroff opening request, |
36 | 252 automatically inserts the matching closing request after point." |
253 (interactive "P") | |
254 (let ((completion (save-excursion | |
255 (beginning-of-line) | |
256 (and (null arg) | |
257 nroff-electric-mode | |
258 (<= (point) (- (point-max) 3)) | |
259 (cdr (assoc (buffer-substring (point) | |
260 (+ 3 (point))) | |
261 nroff-brace-table))))) | |
262 (needs-nl (not (looking-at "[ \t]*$")))) | |
263 (if (null completion) | |
264 (newline (prefix-numeric-value arg)) | |
265 (save-excursion | |
266 (insert "\n\n" completion) | |
267 (if needs-nl (insert "\n"))) | |
268 (forward-char 1)))) | |
269 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
270 (define-minor-mode nroff-electric-mode |
233 | 271 "Toggle `nroff-electric-newline' minor mode. |
272 `nroff-electric-newline' forces Emacs to check for an nroff request at the | |
273 beginning of the line, and insert the matching closing request if necessary. | |
274 This command toggles that mode (off->on, on->off), with an argument, | |
78482
80e300a489d6
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
275 turns it on if arg is positive, otherwise off." |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
276 :lighter " Electric" |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
277 (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
|
278 |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
279 ;; Old names that were not namespace clean. |
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
280 (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
|
281 (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
|
282 (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
|
283 (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
|
284 (define-obsolete-function-alias 'electric-nroff-mode 'nroff-electric-mode "22.1") |
36 | 285 |
18383 | 286 (provide 'nroff-mode) |
287 | |
68660
a747e863fd26
Clean up name space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68599
diff
changeset
|
288 ;; arch-tag: 6e276340-6c65-4f65-b4e3-0ca431ddfb6c |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
233
diff
changeset
|
289 ;;; nroff-mode.el ends here |