1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00
emacs/lispref/hooks.texi

339 lines
7.6 KiB
Plaintext
Raw Normal View History

1994-03-20 18:24:30 +00:00
@c -*-texinfo-*-
@c This is part of the GNU Emacs Lisp Reference Manual.
2005-08-10 14:29:01 +00:00
@c Copyright (C) 1990, 1991, 1992, 1993, 1998, 2002, 2003, 2004,
2006-02-06 12:31:40 +00:00
@c 2005, 2006 Free Software Foundation, Inc.
1994-03-20 18:24:30 +00:00
@c See the file elisp.texi for copying conditions.
@setfilename ../info/hooks
1995-06-06 19:21:15 +00:00
@node Standard Hooks, Index, Standard Keymaps, Top
1994-03-20 18:24:30 +00:00
@appendix Standard Hooks
@cindex standard hooks
@cindex hook variables, list of
1994-03-20 18:24:30 +00:00
1994-05-21 02:22:28 +00:00
The following is a list of hook variables that let you provide
2003-02-04 14:56:31 +00:00
functions to be called from within Emacs on suitable occasions.
1994-03-20 18:24:30 +00:00
1994-05-21 02:22:28 +00:00
Most of these variables have names ending with @samp{-hook}. They are
@dfn{normal hooks}, run by means of @code{run-hooks}. The value of such
1996-09-01 22:44:57 +00:00
a hook is a list of functions; the functions are called with no
arguments and their values are completely ignored. The recommended way
to put a new function on such a hook is to call @code{add-hook}.
@xref{Hooks}, for more information about using hooks.
1994-03-20 18:24:30 +00:00
Every major mode defines a mode hook named
@samp{@var{modename}-mode-hook}. The major mode command runs this
normal hook with @code{run-mode-hooks} as the very last thing it does.
@xref{Mode Hooks}. Most minor modes have mode hooks too. Mode hooks
are omitted in the list below.
1996-09-01 22:44:57 +00:00
The variables whose names end in @samp{-hooks} or @samp{-functions} are
usually @dfn{abnormal hooks}; their values are lists of functions, but
these functions are called in a special way (they are passed arguments,
or their values are used). The variables whose names end in
@samp{-function} have single functions as their values.
1994-03-20 18:24:30 +00:00
@c We need to xref to where each hook is documented or else document
@c it here.
1994-03-20 18:24:30 +00:00
@table @code
@item activate-mark-hook
@xref{The Mark}.
1994-04-10 00:23:58 +00:00
@item after-change-functions
@xref{Change Hooks}.
@item after-change-major-mode-hook
@xref{Mode Hooks}.
1994-03-20 18:24:30 +00:00
@item after-init-hook
@xref{Init File}.
1994-03-20 18:24:30 +00:00
@item after-insert-file-functions
@xref{Saving Properties}.
2000-10-17 22:48:39 +00:00
@item after-make-frame-functions
@xref{Creating Frames}.
1998-02-28 01:53:53 +00:00
@item after-revert-hook
@xref{Reverting}.
1998-02-28 01:53:53 +00:00
@item after-save-hook
@xref{Saving Buffers}.
1994-03-20 18:24:30 +00:00
@item auto-fill-function
@xref{Auto Filling}.
1994-03-20 18:24:30 +00:00
@item auto-save-hook
@xref{Auto-Saving}.
1994-04-10 00:23:58 +00:00
@item before-change-functions
@xref{Change Hooks}.
1994-03-20 18:24:30 +00:00
@item before-init-hook
@xref{Init File}.
1994-03-20 18:24:30 +00:00
@item before-make-frame-hook
@xref{Creating Frames}.
1998-02-28 01:53:53 +00:00
@item before-revert-hook
@xref{Reverting}.
@item before-save-hook
@xref{Saving Buffers}.
1994-03-20 18:24:30 +00:00
@item blink-paren-function
@xref{Blinking}.
1998-02-28 01:53:53 +00:00
@item buffer-access-fontify-functions
@xref{Lazy Properties}.
1994-03-20 18:24:30 +00:00
@item calendar-load-hook
@iftex
@inforef{Calendar Customizing,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Calendar Customizing,,, emacs}.
@end ifnottex
1998-02-28 01:53:53 +00:00
@item change-major-mode-hook
@xref{Creating Buffer-Local}.
1998-02-28 01:53:53 +00:00
@item command-line-functions
@xref{Command-Line Arguments}.
1994-03-20 18:24:30 +00:00
@item comment-indent-function
@xref{Options for Comments,, Options Controlling Comments, emacs, the
GNU Emacs Manual}.
@item compilation-finish-functions
Functions to call when a compilation process finishes.
2001-12-14 03:08:47 +00:00
@item custom-define-hook
Hook called after defining each customize option.
1994-03-20 18:24:30 +00:00
@item deactivate-mark-hook
@xref{The Mark}.
@item desktop-after-read-hook
Normal hook run after a successful @code{desktop-read}. May be used
to show a buffer list. @xref{Saving Emacs Sessions,, Saving Emacs
Sessions, emacs, the GNU Emacs Manual}.
@item desktop-no-desktop-file-hook
Normal hook run when @code{desktop-read} can't find a desktop file.
May be used to show a dired buffer. @xref{Saving Emacs Sessions,,
Saving Emacs Sessions, emacs, the GNU Emacs Manual}.
@item desktop-save-hook
Normal hook run before the desktop is saved in a desktop file. This
is useful for truncating history lists, for example. @xref{Saving
Emacs Sessions,, Saving Emacs Sessions, emacs, the GNU Emacs Manual}.
1994-03-20 18:24:30 +00:00
@item diary-display-hook
@iftex
@inforef{Fancy Diary Display,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Fancy Diary Display,,, emacs}.
@end ifnottex
1994-03-20 18:24:30 +00:00
@item diary-hook
List of functions called after the display of the diary. Can be used
for appointment notification.
@item disabled-command-function
@xref{Disabling Commands}.
1998-02-28 01:53:53 +00:00
@item echo-area-clear-hook
@xref{Echo Area Customization}.
@item emacs-startup-hook
@xref{Init File}.
2002-06-23 22:15:43 +00:00
@item find-file-hook
@xref{Visiting Functions}.
2002-06-23 22:15:43 +00:00
@item find-file-not-found-functions
@xref{Visiting Functions}.
1994-03-20 18:24:30 +00:00
@item first-change-hook
@xref{Change Hooks}.
2005-04-28 11:35:02 +00:00
@item font-lock-beginning-of-syntax-function
@xref{Syntactic Font Lock}.
@item font-lock-fontify-buffer-function
@xref{Other Font Lock Variables}.
@item font-lock-fontify-region-function
@xref{Other Font Lock Variables}.
@item font-lock-mark-block-function
@xref{Other Font Lock Variables}.
@item font-lock-syntactic-face-function
@xref{Syntactic Font Lock}.
@item font-lock-unfontify-buffer-function
@xref{Other Font Lock Variables}.
@item font-lock-unfontify-region-function
@xref{Other Font Lock Variables}.
1994-03-20 18:24:30 +00:00
@item initial-calendar-window-hook
@iftex
@inforef{Calendar Customizing,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Calendar Customizing,,, emacs}.
@end ifnottex
@item kbd-macro-termination-hook
@xref{Keyboard Macros}.
1998-02-28 01:53:53 +00:00
@item kill-buffer-hook
@xref{Killing Buffers}.
1994-03-20 18:24:30 +00:00
@item kill-buffer-query-functions
@xref{Killing Buffers}.
1998-02-28 01:53:53 +00:00
@item kill-emacs-hook
@xref{Killing Emacs}.
1994-03-20 18:24:30 +00:00
@item kill-emacs-query-functions
@xref{Killing Emacs}.
1994-03-20 18:24:30 +00:00
@item lisp-indent-function
1994-03-20 18:24:30 +00:00
@item list-diary-entries-hook
@iftex
@inforef{Fancy Diary Display,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Fancy Diary Display,,, emacs}.
@end ifnottex
1994-03-20 18:24:30 +00:00
@item mail-setup-hook
@xref{Mail Mode Misc,, Mail Mode Miscellany, emacs, the GNU Emacs
Manual}.
1994-03-20 18:24:30 +00:00
@item mark-diary-entries-hook
@iftex
@inforef{Fancy Diary Display,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Fancy Diary Display,,, emacs}.
@end ifnottex
1998-02-28 01:53:53 +00:00
@item menu-bar-update-hook
@xref{Menu Bar}.
1994-03-20 18:24:30 +00:00
@item minibuffer-setup-hook
@xref{Minibuffer Misc}.
1994-04-10 00:23:58 +00:00
@item minibuffer-exit-hook
@xref{Minibuffer Misc}.
@item mouse-position-function
@xref{Mouse Position}.
1994-03-20 18:24:30 +00:00
@item nongregorian-diary-listing-hook
@iftex
@inforef{Hebrew/Islamic Entries,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Hebrew/Islamic Entries,,, emacs}.
@end ifnottex
1994-03-20 18:24:30 +00:00
@item nongregorian-diary-marking-hook
@iftex
@inforef{Hebrew/Islamic Entries,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Hebrew/Islamic Entries,,, emacs}.
@end ifnottex
2005-07-04 15:16:16 +00:00
@item occur-hook
1994-03-20 18:24:30 +00:00
@item post-command-hook
@xref{Command Overview}.
1994-03-20 18:24:30 +00:00
@item pre-abbrev-expand-hook
@xref{Abbrev Expansion}.
1994-03-20 18:24:30 +00:00
@item pre-command-hook
@xref{Command Overview}.
1994-03-20 18:24:30 +00:00
@item print-diary-entries-hook
@iftex
@inforef{Diary Customizing,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Diary Customizing,,, emacs}.
@end ifnottex
1998-02-28 01:53:53 +00:00
@item redisplay-end-trigger-functions
@xref{Window Hooks}.
@item scheme-indent-function
1994-03-20 18:24:30 +00:00
@item suspend-hook
@xref{Suspending Emacs}.
1994-03-20 18:24:30 +00:00
@item suspend-resume-hook
@xref{Suspending Emacs}.
@item temp-buffer-setup-hook
@xref{Temporary Displays}.
1994-03-20 18:24:30 +00:00
@item temp-buffer-show-function
@xref{Temporary Displays}.
@item temp-buffer-show-hook
@xref{Temporary Displays}.
1994-03-20 18:24:30 +00:00
@item term-setup-hook
@xref{Terminal-Specific}.
1994-03-20 18:24:30 +00:00
@item today-visible-calendar-hook
@iftex
@inforef{Calendar Customizing,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Calendar Customizing,,, emacs}.
@end ifnottex
1994-03-20 18:24:30 +00:00
@item today-invisible-calendar-hook
@iftex
2006-05-20 02:28:50 +00:00
@inforef{Calendar Customizing,, emacs-xtra}.
@end iftex
@ifnottex
@xref{Calendar Customizing,,, emacs}.
@end ifnottex
1998-02-28 01:53:53 +00:00
@item window-configuration-change-hook
@xref{Window Hooks}.
1998-02-28 01:53:53 +00:00
@item window-scroll-functions
@xref{Window Hooks}.
1994-03-20 18:24:30 +00:00
@item window-setup-hook
@xref{Window Systems}.
1998-02-28 01:53:53 +00:00
@item window-size-change-functions
@xref{Window Hooks}.
2002-06-23 22:15:43 +00:00
@item write-contents-functions
@xref{Saving Buffers}.
2002-06-23 22:15:43 +00:00
@item write-file-functions
@xref{Saving Buffers}.
1995-06-06 19:21:15 +00:00
@item write-region-annotate-functions
@xref{Saving Properties}.
1994-03-20 18:24:30 +00:00
@end table
2003-09-01 15:45:59 +00:00
@ignore
arch-tag: 55fd0296-d906-4551-b300-979d3846aa88
@end ignore