Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
1caf5f96
Commit
1caf5f96
authored
Oct 06, 2007
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Aaron Hawley <aaronh at garden.org>
(auto-insert-alist): Add a Texinfo entry.
parent
490a8abe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
1 deletion
+82
-1
lisp/autoinsert.el
lisp/autoinsert.el
+82
-1
No files found.
lisp/autoinsert.el
View file @
1caf5f96
...
...
@@ -212,7 +212,88 @@ If this contains a %s, that will be replaced by the matching rule."
\(provide '"
(file-name-sans-extension (file-name-nondirectory (buffer-file-name)))
")
\;;; "
(
file-name-nondirectory
(
buffer-file-name
))
" ends here\n"
))
\;;; " (file-name-nondirectory (buffer-file-name)) " ends here\n")
(("\\.texi\\(nfo\\)?\\'" . "Texinfo file skeleton")
"Title: "
"\\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename "
(file-name-sans-extension
(file-name-nondirectory (buffer-file-name))) ".info\n"
"@settitle " str "
@c %**end of header
@copying\n"
(setq short-description (read-string "Short description: "))
".\n\n"
"Copyright @copyright{} " (substring (current-time-string) -4) " "
(getenv "ORGANIZATION") |
(
progn
user-full-name
)
"
@quotation
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1 or
any later version published by the Free Software Foundation; with no
Invariant Sections, and no Cover Texts. A copy of the license is
included in the section entitled ``GNU Free Documentation License.''
A copy of the license is also available from the Free Software
Foundation Web site at @url{http://www.gnu.org/licenses/fdl.html}.
@end quotation
The document was typeset with
@uref{http://www.texinfo.org/, GNU Texinfo}.
@end copying
@titlepage
@title "
str
"
@subtitle "
short-description
"
@author "
(
getenv
"ORGANIZATION"
)
|
(
progn
user-full-name
)
" <"
(
progn
user-mail-address
)
">
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@c Output the table of the contents at the beginning.
@contents
@ifnottex
@node Top
@top "
str
"
@insertcopying
@end ifnottex
@c Generate the nodes for this menu with `C-c C-u C-m'.
@menu
@end menu
@c Update all node entries with `C-c C-u C-n'.
@c Insert new nodes with `C-c C-c n'.
@node Chapter One
@chapter Chapter One
"
_
"
@node Copying This Manual
@appendix Copying This Manual
@menu
* GNU Free Documentation License:: License for copying this manual.
@end menu
@c Get fdl.texi from http://www.gnu.org/licenses/fdl.html
@include fdl.texi
@node Index
@unnumbered Index
@printindex cp
@bye
@c "
(
file-name-nondirectory
(
buffer-file-name
))
" ends here\n"
))
"A list specifying text to insert by default into a new file.
Elements look like (CONDITION . ACTION) or ((CONDITION . DESCRIPTION) . ACTION).
CONDITION may be a regexp that must match the new file's name, or it may be
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment