Some fixes to follow coding conventions in files maintained by FSF.
[emacs.git] / lisp / textmodes / scribe.el
blobd1b5aedf3c6887cd0237427ab7a67b6423a78891
1 ;;; scribe.el --- scribe mode, and its idiosyncratic commands
3 ;; Copyright (C) 1985 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: wp
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)
13 ;; any later version.
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.
25 ;;; Commentary:
27 ;; A major mode for editing source in written for the Scribe text formatter.
28 ;; Knows about Scribe syntax and standard layout rules. The command to
29 ;; run Scribe on a buffer is bogus; someone interested should fix it.
31 ;;; Code:
33 (defgroup scribe nil
34 "Scribe mode."
35 :prefix "scribe-"
36 :group 'wp)
38 (defvar scribe-mode-syntax-table nil
39 "Syntax table used while in scribe mode.")
41 (defvar scribe-mode-abbrev-table nil
42 "Abbrev table used while in scribe mode.")
44 (defcustom scribe-fancy-paragraphs nil
45 "*Non-NIL makes Scribe mode use a different style of paragraph separation."
46 :type 'boolean
47 :group 'scribe)
49 (defcustom scribe-electric-quote nil
50 "*Non-NIL makes insert of double quote use `` or '' depending on context."
51 :type 'boolean
52 :group 'scribe)
54 (defcustom scribe-electric-parenthesis nil
55 "*Non-NIL makes parenthesis char ( (]}> ) automatically insert its close
56 if typed after an @Command form."
57 :type 'boolean
58 :group 'scribe)
60 (defconst scribe-open-parentheses "[({<"
61 "Open parenthesis characters for Scribe.")
63 (defconst scribe-close-parentheses "])}>"
64 "Close parenthesis characters for Scribe.
65 These should match up with `scribe-open-parenthesis'.")
67 (if (null scribe-mode-syntax-table)
68 (let ((st (syntax-table)))
69 (unwind-protect
70 (progn
71 (setq scribe-mode-syntax-table (copy-syntax-table
72 text-mode-syntax-table))
73 (set-syntax-table scribe-mode-syntax-table)
74 (modify-syntax-entry ?\" " ")
75 (modify-syntax-entry ?\\ " ")
76 (modify-syntax-entry ?@ "w ")
77 (modify-syntax-entry ?< "(> ")
78 (modify-syntax-entry ?> ")< ")
79 (modify-syntax-entry ?[ "(] ")
80 (modify-syntax-entry ?] ")[ ")
81 (modify-syntax-entry ?{ "(} ")
82 (modify-syntax-entry ?} "){ ")
83 (modify-syntax-entry ?' "w "))
84 (set-syntax-table st))))
86 (defvar scribe-mode-map nil)
88 (if scribe-mode-map
89 nil
90 (setq scribe-mode-map (make-sparse-keymap))
91 (define-key scribe-mode-map "\t" 'scribe-tab)
92 (define-key scribe-mode-map "\e\t" 'tab-to-tab-stop)
93 (define-key scribe-mode-map "\es" 'center-line)
94 (define-key scribe-mode-map "\e}" 'up-list)
95 (define-key scribe-mode-map "\eS" 'center-paragraph)
96 (define-key scribe-mode-map "\"" 'scribe-insert-quote)
97 (define-key scribe-mode-map "(" 'scribe-parenthesis)
98 (define-key scribe-mode-map "[" 'scribe-parenthesis)
99 (define-key scribe-mode-map "{" 'scribe-parenthesis)
100 (define-key scribe-mode-map "<" 'scribe-parenthesis)
101 (define-key scribe-mode-map "\C-c\C-c" 'scribe-chapter)
102 (define-key scribe-mode-map "\C-c\C-t" 'scribe-section)
103 (define-key scribe-mode-map "\C-c\C-s" 'scribe-subsection)
104 (define-key scribe-mode-map "\C-c\C-v" 'scribe-insert-environment)
105 (define-key scribe-mode-map "\C-c\C-e" 'scribe-bracket-region-be)
106 (define-key scribe-mode-map "\C-c[" 'scribe-begin)
107 (define-key scribe-mode-map "\C-c]" 'scribe-end)
108 (define-key scribe-mode-map "\C-c\C-i" 'scribe-italicize-word)
109 (define-key scribe-mode-map "\C-c\C-b" 'scribe-bold-word)
110 (define-key scribe-mode-map "\C-c\C-u" 'scribe-underline-word))
112 ;;;###autoload
113 (defun scribe-mode ()
114 "Major mode for editing files of Scribe (a text formatter) source.
115 Scribe-mode is similar to text-mode, with a few extra commands added.
116 \\{scribe-mode-map}
118 Interesting variables:
120 scribe-fancy-paragraphs
121 Non-nil makes Scribe mode use a different style of paragraph separation.
123 scribe-electric-quote
124 Non-nil makes insert of double quote use `` or '' depending on context.
126 scribe-electric-parenthesis
127 Non-nil makes an open-parenthesis char (one of `([<{')
128 automatically insert its close if typed after an @Command form."
129 (interactive)
130 (kill-all-local-variables)
131 (use-local-map scribe-mode-map)
132 (setq mode-name "Scribe")
133 (setq major-mode 'scribe-mode)
134 (define-abbrev-table 'scribe-mode-abbrev-table ())
135 (setq local-abbrev-table scribe-mode-abbrev-table)
136 (make-local-variable 'comment-start)
137 (setq comment-start "@Comment[")
138 (make-local-variable 'comment-start-skip)
139 (setq comment-start-skip (concat "@Comment[" scribe-open-parentheses "]"))
140 (make-local-variable 'comment-column)
141 (setq comment-column 0)
142 (make-local-variable 'comment-end)
143 (setq comment-end "]")
144 (make-local-variable 'paragraph-start)
145 (setq paragraph-start (concat "\\([\n\f]\\)\\|\\(@\\w+["
146 scribe-open-parentheses
147 "].*["
148 scribe-close-parentheses
149 "]$\\)"))
150 (make-local-variable 'paragraph-separate)
151 (setq paragraph-separate (if scribe-fancy-paragraphs
152 paragraph-start "$"))
153 (make-local-variable 'sentence-end)
154 (setq sentence-end "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*")
155 (make-local-variable 'compile-command)
156 (setq compile-command (concat "scribe " (buffer-file-name)))
157 (set-syntax-table scribe-mode-syntax-table)
158 (run-hooks 'text-mode-hook 'scribe-mode-hook))
160 (defun scribe-tab ()
161 (interactive)
162 (insert "@\\"))
164 ;; This algorithm could probably be improved somewhat.
165 ;; Right now, it loses seriously...
167 (defun scribe ()
168 "Run Scribe on the current buffer."
169 (interactive)
170 (call-interactively 'compile))
172 (defun scribe-envelop-word (string count)
173 "Surround current word with Scribe construct @STRING[...].
174 COUNT specifies how many words to surround. A negative count means
175 to skip backward."
176 (let ((spos (point)) (epos (point)) (ccoun 0) noparens)
177 (if (not (zerop count))
178 (progn (if (= (char-syntax (preceding-char)) ?w)
179 (forward-sexp (min -1 count)))
180 (setq spos (point))
181 (if (looking-at (concat "@\\w[" scribe-open-parentheses "]"))
182 (forward-char 2)
183 (goto-char epos)
184 (skip-chars-backward "\\W")
185 (forward-char -1))
186 (forward-sexp (max count 1))
187 (setq epos (point))))
188 (goto-char spos)
189 (while (and (< ccoun (length scribe-open-parentheses))
190 (save-excursion
191 (or (search-forward (char-to-string
192 (aref scribe-open-parentheses ccoun))
193 epos t)
194 (search-forward (char-to-string
195 (aref scribe-close-parentheses ccoun))
196 epos t)))
197 (setq ccoun (1+ ccoun))))
198 (if (>= ccoun (length scribe-open-parentheses))
199 (progn (goto-char epos)
200 (insert "@end(" string ")")
201 (goto-char spos)
202 (insert "@begin(" string ")"))
203 (goto-char epos)
204 (insert (aref scribe-close-parentheses ccoun))
205 (goto-char spos)
206 (insert "@" string (aref scribe-open-parentheses ccoun))
207 (goto-char epos)
208 (forward-char 3)
209 (skip-chars-forward scribe-close-parentheses))))
211 (defun scribe-underline-word (count)
212 "Underline COUNT words around point by means of Scribe constructs."
213 (interactive "p")
214 (scribe-envelop-word "u" count))
216 (defun scribe-bold-word (count)
217 "Boldface COUNT words around point by means of Scribe constructs."
218 (interactive "p")
219 (scribe-envelop-word "b" count))
221 (defun scribe-italicize-word (count)
222 "Italicize COUNT words around point by means of Scribe constructs."
223 (interactive "p")
224 (scribe-envelop-word "i" count))
226 (defun scribe-begin ()
227 (interactive)
228 (insert "\n")
229 (forward-char -1)
230 (scribe-envelop-word "Begin" 0)
231 (re-search-forward (concat "[" scribe-open-parentheses "]")))
233 (defun scribe-end ()
234 (interactive)
235 (insert "\n")
236 (forward-char -1)
237 (scribe-envelop-word "End" 0)
238 (re-search-forward (concat "[" scribe-open-parentheses "]")))
240 (defun scribe-chapter ()
241 (interactive)
242 (insert "\n")
243 (forward-char -1)
244 (scribe-envelop-word "Chapter" 0)
245 (re-search-forward (concat "[" scribe-open-parentheses "]")))
247 (defun scribe-section ()
248 (interactive)
249 (insert "\n")
250 (forward-char -1)
251 (scribe-envelop-word "Section" 0)
252 (re-search-forward (concat "[" scribe-open-parentheses "]")))
254 (defun scribe-subsection ()
255 (interactive)
256 (insert "\n")
257 (forward-char -1)
258 (scribe-envelop-word "SubSection" 0)
259 (re-search-forward (concat "[" scribe-open-parentheses "]")))
261 (defun scribe-bracket-region-be (env min max)
262 (interactive "sEnvironment: \nr")
263 (save-excursion
264 (goto-char max)
265 (insert "@end(" env ")\n")
266 (goto-char min)
267 (insert "@begin(" env ")\n")))
269 (defun scribe-insert-environment (env)
270 (interactive "sEnvironment: ")
271 (scribe-bracket-region-be env (point) (point))
272 (forward-line 1)
273 (insert ?\n)
274 (forward-char -1))
276 (defun scribe-insert-quote (count)
277 "Insert ``, '' or \" according to preceding character.
278 If `scribe-electric-quote' is non-NIL, insert ``, '' or \" according
279 to preceding character. With numeric arg N, always insert N \" characters.
280 Else just insert \"."
281 (interactive "P")
282 (if (or count (not scribe-electric-quote))
283 (self-insert-command (prefix-numeric-value count))
284 (let (lastfore lastback lastquote)
285 (insert
286 (cond
287 ((= (preceding-char) ?\\) ?\")
288 ((bobp) "``")
290 (setq lastfore (save-excursion (and (search-backward
291 "``" (- (point) 1000) t)
292 (point)))
293 lastback (save-excursion (and (search-backward
294 "''" (- (point) 1000) t)
295 (point)))
296 lastquote (save-excursion (and (search-backward
297 "\"" (- (point) 100) t)
298 (point))))
299 (if (not lastquote)
300 (cond ((not lastfore) "``")
301 ((not lastback) "''")
302 ((> lastfore lastback) "''")
303 (t "``"))
304 (cond ((and (not lastback) (not lastfore)) "\"")
305 ((and lastback (not lastfore) (> lastquote lastback)) "\"")
306 ((and lastback (not lastfore) (> lastback lastquote)) "``")
307 ((and lastfore (not lastback) (> lastquote lastfore)) "\"")
308 ((and lastfore (not lastback) (> lastfore lastquote)) "''")
309 ((and (> lastquote lastfore) (> lastquote lastback)) "\"")
310 ((> lastfore lastback) "''")
311 (t "``")))))))))
313 (defun scribe-parenthesis (count)
314 "If scribe-electric-parenthesis is non-NIL, insertion of an open-parenthesis
315 character inserts the following close parenthesis character if the
316 preceding text is of the form @Command."
317 (interactive "P")
318 (self-insert-command (prefix-numeric-value count))
319 (let (at-command paren-char point-save)
320 (if (or count (not scribe-electric-parenthesis))
322 (save-excursion
323 (forward-char -1)
324 (setq point-save (point))
325 (skip-chars-backward (concat "^ \n\t\f" scribe-open-parentheses))
326 (setq at-command (and (equal (following-char) ?@)
327 (/= (point) (1- point-save)))))
328 (if (and at-command
329 (setq paren-char
330 (string-match (regexp-quote
331 (char-to-string (preceding-char)))
332 scribe-open-parentheses)))
333 (save-excursion
334 (insert (aref scribe-close-parentheses paren-char)))))))
336 (provide 'scribe)
338 ;;; scribe.el ends here