1 ;;; autoinsert.el --- automatic mode-dependent insertion of text into new files
3 ;; Copyright (C) 1985, 1986, 1987, 1994, 1995, 1998, 2000, 2001, 2002,
4 ;; 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Charlie Martin <crm@cs.duke.edu>
7 ;; Adapted-By: Daniel Pfeiffer <occitan@esperanto.org>
8 ;; Keywords: convenience
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;; The following defines an association list for text to be
29 ;; automatically inserted when a new file is created, and a function
30 ;; which automatically inserts these files; the idea is to insert
31 ;; default text much as the mode is automatically set using
35 ;; (add-hook 'find-file-hook 'auto-insert)
36 ;; setq auto-insert-directory to an appropriate slash-terminated value
38 ;; You can also customize the variable `auto-insert-mode' to load the
39 ;; package. Alternatively, add the following to your .emacs file:
40 ;; (auto-insert-mode 1)
42 ;; Author: Charlie Martin
43 ;; Department of Computer Science and
44 ;; National Biomedical Simulation Resource
46 ;; Duke University Medical Center
48 ;; (crm@cs.duke.edu,mcnc!duke!crm)
52 (defgroup auto-insert nil
53 "Automatic mode-dependent insertion of text into new files."
54 :prefix
"auto-insert-"
59 (defcustom auto-insert
'not-modified
60 "*Controls automatic insertion into newly found empty files.
64 other insert if possible, but mark as unmodified.
65 Insertion is possible when something appropriate is found in
66 `auto-insert-alist'. When the insertion is marked as unmodified, you can
67 save it with \\[write-file] RET.
68 This variable is used when the function `auto-insert' is called, e.g.
69 when you do (add-hook 'find-file-hook 'auto-insert).
70 With \\[auto-insert], this is always treated as if it were t."
71 :type
'(choice (const :tag
"Insert if possible" t
)
72 (const :tag
"Do nothing" nil
)
73 (other :tag
"insert if possible, mark as unmodified."
77 (defcustom auto-insert-query
'function
78 "*Non-nil means ask user before auto-inserting.
79 When this is `function', only ask when called non-interactively."
80 :type
'(choice (const :tag
"Don't ask" nil
)
81 (const :tag
"Ask if called non-interactively" function
)
85 (defcustom auto-insert-prompt
"Perform %s auto-insertion? "
86 "*Prompt to use when querying whether to auto-insert.
87 If this contains a %s, that will be replaced by the matching rule."
92 (defcustom auto-insert-alist
93 '((("\\.\\([Hh]\\|hh\\|hpp\\)\\'" .
"C / C++ header")
94 (upcase (concat (file-name-nondirectory
95 (substring buffer-file-name
0 (match-beginning 0)))
97 (substring buffer-file-name
(1+ (match-beginning 0)))))
102 (("\\.\\([Cc]\\|cc\\|cpp\\)\\'" .
"C / C++ program")
105 (let ((stem (file-name-sans-extension buffer-file-name
)))
106 (cond ((file-exists-p (concat stem
".h"))
107 (file-name-nondirectory (concat stem
".h")))
108 ((file-exists-p (concat stem
".hh"))
109 (file-name-nondirectory (concat stem
".hh")))))
112 (("[Mm]akefile\\'" .
"Makefile") .
"makefile.inc")
114 (html-mode .
(lambda () (sgml-tag "html")))
116 (plain-tex-mode .
"tex-insert.tex")
117 (bibtex-mode .
"tex-insert.tex")
119 ;; should try to offer completing read for these
121 "\\documentclass[" str
& ?\
] | -
1
122 ?
{ (read-string "class: ") "}\n"
124 "\\usepackage[" (read-string "options, RET: ") & ?\
] | -
1 ?
{ str
"}\n")
125 _
"\n\\begin{document}\n" _
128 (("/bin/.*[^/]\\'" .
"Shell-Script mode magic number")
130 (if (eq major-mode default-major-mode
)
133 (ada-mode . ada-header
)
135 (("\\.[1-9]\\'" .
"Man page skeleton")
136 "Short description: "
137 ".\\\" Copyright (C), " (substring (current-time-string) -
4) " "
138 (getenv "ORGANIZATION") |
(progn user-full-name
)
140 .\\\" You may distribute this file under the terms of the GNU Free
141 .\\\" Documentation License.
142 .TH " (file-name-sans-extension (file-name-nondirectory (buffer-file-name)))
143 " " (file-name-extension (buffer-file-name))
144 " " (format-time-string "%Y-%m-%d ")
146 (file-name-sans-extension (file-name-nondirectory (buffer-file-name)))
149 .B " (file-name-sans-extension (file-name-nondirectory (buffer-file-name)))
160 '(if (search-backward "&" (line-beginning-position) t
)
161 (replace-match (capitalize (user-login-name)) t t
))
162 '(end-of-line 1) " <" (progn user-mail-address
) ">\n")
164 (("\\.el\\'" .
"Emacs Lisp header")
165 "Short description: "
166 ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str
"
168 ;; Copyright (C) " (substring (current-time-string) -
4) " "
169 (getenv "ORGANIZATION") |
(progn user-full-name
) "
171 ;; Author: " (user-full-name)
172 '(if (search-backward "&" (line-beginning-position) t
)
173 (replace-match (capitalize (user-login-name)) t t
))
174 '(end-of-line 1) " <" (progn user-mail-address
) ">
177 ;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
178 '(setq v1
(mapcar (lambda (x) (list (symbol-name (car x
))))
179 finder-known-keywords
)
180 v2
(mapconcat (lambda (x) (format "%12s: %s" (car x
) (cdr x
)))
181 finder-known-keywords
183 ((let ((minibuffer-help-form v2
))
184 (completing-read "Keyword, C-h: " v1 nil t
))
187 \;; This program is free software; you can redistribute it and/or modify
188 \;; it under the terms of the GNU General Public License as published by
189 \;; the Free Software Foundation, either version 3 of the License, or
190 \;; (at your option) any later version.
192 \;; This program is distributed in the hope that it will be useful,
193 \;; but WITHOUT ANY WARRANTY; without even the implied warranty of
194 \;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
195 \;; GNU General Public License for more details.
197 \;; You should have received a copy of the GNU General Public License
198 \;; along with this program. If not, see <http://www.gnu.org/licenses/>.
209 (file-name-sans-extension (file-name-nondirectory (buffer-file-name)))
211 \;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")
212 (("\\.texi\\(nfo\\)?\\'" .
"Texinfo file skeleton")
214 "\\input texinfo @c -*-texinfo-*-
215 @c %**start of header
217 (file-name-sans-extension
218 (file-name-nondirectory (buffer-file-name))) ".info\n"
222 (setq short-description
(read-string "Short description: "))
224 "Copyright @copyright{} " (substring (current-time-string) -
4) " "
225 (getenv "ORGANIZATION") |
(progn user-full-name
) "
228 Permission is granted to copy, distribute and/or modify this document
229 under the terms of the GNU Free Documentation License, Version 1.2
230 or any later version published by the Free Software Foundation;
231 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
232 Texts. A copy of the license is included in the section entitled ``GNU
233 Free Documentation License''.
235 A copy of the license is also available from the Free Software
236 Foundation Web site at @url{http://www.gnu.org/licenses/fdl.html}.
240 The document was typeset with
241 @uref{http://www.texinfo.org/, GNU Texinfo}.
247 @subtitle " short-description
"
248 @author " (getenv "ORGANIZATION") |
(progn user-full-name
)
249 " <" (progn user-mail-address
) ">
251 @vskip 0pt plus 1filll
255 @c Output the table of the contents at the beginning.
265 @c Generate the nodes for this menu with `C-c C-u C-m'.
269 @c Update all node entries with `C-c C-u C-n'.
270 @c Insert new nodes with `C-c C-c n'.
276 @node Copying This Manual
277 @appendix Copying This Manual
280 * GNU Free Documentation License:: License for copying this manual.
283 @c Get fdl.texi from http://www.gnu.org/licenses/fdl.html
293 @c " (file-name-nondirectory (buffer-file-name)) " ends here\n"))
294 "A list specifying text to insert by default into a new file.
295 Elements look like (CONDITION . ACTION) or ((CONDITION . DESCRIPTION) . ACTION).
296 CONDITION may be a regexp that must match the new file's name, or it may be
297 a symbol that must match the major mode for this element to apply.
298 Only the first matching element is effective.
299 Optional DESCRIPTION is a string for filling `auto-insert-prompt'.
300 ACTION may be a skeleton to insert (see `skeleton-insert'), an absolute
301 file-name or one relative to `auto-insert-directory' or a function to call.
302 ACTION may also be a vector containing several successive single actions as
303 described above, e.g. [\"header.insert\" date-and-author-update]."
308 ;; Establish a default value for auto-insert-directory
309 (defcustom auto-insert-directory
"~/insert/"
310 "*Directory from which auto-inserted files are taken.
311 The value must be an absolute directory name;
312 thus, on a GNU or Unix system, it must end in a slash."
318 (defun auto-insert ()
319 "Insert default contents into new files if variable `auto-insert' is non-nil.
320 Matches the visited file name against the elements of `auto-insert-alist'."
322 (and (not buffer-read-only
)
323 (or (eq this-command
'auto-insert
)
326 (let ((alist auto-insert-alist
)
327 case-fold-search cond desc action
)
329 ;; find first matching alist entry
331 (if (atom (setq cond
(car (car alist
))))
333 (setq desc
(cdr cond
)
335 (if (if (symbolp cond
)
337 (and buffer-file-name
338 (string-match cond buffer-file-name
)))
339 (setq action
(cdr (car alist
))
341 (setq alist
(cdr alist
))))
343 ;; Now, if we found something, do it
346 (file-readable-p (concat auto-insert-directory action
))
348 (if auto-insert-query
349 (or (if (eq auto-insert-query
'function
)
350 (eq this-command
'auto-insert
))
351 (y-or-n-p (format auto-insert-prompt desc
)))
357 (setq action
(concat auto-insert-directory action
)))
358 (insert-file-contents action
))
359 (save-window-excursion
360 ;; make buffer visible before skeleton or function
361 ;; which might ask the user for something
362 (switch-to-buffer (current-buffer))
363 (if (and (consp action
)
364 (not (eq (car action
) 'lambda
)))
365 (skeleton-insert action
)
370 (and (buffer-modified-p)
371 (not (eq this-command
'auto-insert
))
372 (set-buffer-modified-p (eq auto-insert t
)))))
373 ;; Return nil so that it could be used in
374 ;; `find-file-not-found-hooks', though that's probably inadvisable.
379 (defun define-auto-insert (condition action
&optional after
)
380 "Associate CONDITION with (additional) ACTION in `auto-insert-alist'.
381 Optional AFTER means to insert action after all existing actions for CONDITION,
382 or if CONDITION had no actions, after all other CONDITIONs."
383 (let ((elt (assoc condition auto-insert-alist
)))
386 (if (vectorp (cdr elt
))
387 (vconcat (if after
(cdr elt
))
388 (if (vectorp action
) action
(vector action
))
389 (if after
() (cdr elt
)))
391 (vector (cdr elt
) action
)
392 (vector action
(cdr elt
)))))
394 (nconc auto-insert-alist
(list (cons condition action
)))
395 (setq auto-insert-alist
(cons (cons condition action
)
396 auto-insert-alist
))))))
399 (define-minor-mode auto-insert-mode
400 "Toggle Auto-insert mode.
401 With prefix ARG, turn Auto-insert mode on if and only if ARG is positive.
402 Returns the new status of Auto-insert mode (non-nil means on).
404 When Auto-insert mode is enabled, when new files are created you can
405 insert a template for the file depending on the mode of the buffer."
406 :global t
:group
'auto-insert
408 (add-hook 'find-file-hook
'auto-insert
)
409 (remove-hook 'find-file-hook
'auto-insert
)))
411 (provide 'autoinsert
)
413 ;; arch-tag: 5b6630ac-c735-43cf-b097-b78c622af909
414 ;;; autoinsert.el ends here