diff options
| author | Dave Love | 2000-03-30 23:12:55 +0000 |
|---|---|---|
| committer | Dave Love | 2000-03-30 23:12:55 +0000 |
| commit | 7d291226208da38bcd93ccc3d1e4c63f02bf77c3 (patch) | |
| tree | 3bce6b4163db07a4fc4680d42cb76c5397133d83 | |
| parent | d9701e91eca501213ed9b55ce2b5412715dcdd57 (diff) | |
| download | emacs-7d291226208da38bcd93ccc3d1e4c63f02bf77c3.tar.gz emacs-7d291226208da38bcd93ccc3d1e4c63f02bf77c3.zip | |
Hyperlinks, help echo.
| -rw-r--r-- | man/help.texi | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/man/help.texi b/man/help.texi index d394fd9adbf..a82f9c6b0a2 100644 --- a/man/help.texi +++ b/man/help.texi | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | @c This is part of the Emacs manual. | 1 | @c This is part of the Emacs manual. |
| 2 | @c Copyright (C) 1985, 86, 87, 93, 94, 95, 1997 Free Software Foundation, Inc. | 2 | @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000 |
| 3 | @c Free Software Foundation, Inc. | ||
| 3 | @c See file emacs.texi for copying conditions. | 4 | @c See file emacs.texi for copying conditions. |
| 4 | @node Help, Mark, M-x, Top | 5 | @node Help, Mark, M-x, Top |
| 5 | @chapter Help | 6 | @chapter Help |
| @@ -31,7 +32,9 @@ prefix key. (A few prefix keys don't support @kbd{C-h}, because they | |||
| 31 | define other meanings for it, but they all support @key{F1}.) | 32 | define other meanings for it, but they all support @key{F1}.) |
| 32 | 33 | ||
| 33 | Most help buffers use a special major mode, Help mode, which lets you | 34 | Most help buffers use a special major mode, Help mode, which lets you |
| 34 | scroll conveniently with @key{SPC} and @key{DEL}. | 35 | scroll conveniently with @key{SPC} and @key{DEL}. It also offers |
| 36 | hyperlinks to more help on cross-referenced names, Info nodes, | ||
| 37 | customization buffers and the like. @xref{Help Mode}. | ||
| 35 | 38 | ||
| 36 | @menu | 39 | @menu |
| 37 | * Help Summary:: Brief list of all Help commands. | 40 | * Help Summary:: Brief list of all Help commands. |
| @@ -42,6 +45,7 @@ scroll conveniently with @key{SPC} and @key{DEL}. | |||
| 42 | * Language Help:: Help relating to international language support. | 45 | * Language Help:: Help relating to international language support. |
| 43 | * Help Mode:: Special features of Help mode and Help buffers. | 46 | * Help Mode:: Special features of Help mode and Help buffers. |
| 44 | * Misc Help:: Other help commands. | 47 | * Misc Help:: Other help commands. |
| 48 | * Help Echo:: Help on active text and tooltips (`balloon help') | ||
| 45 | @end menu | 49 | @end menu |
| 46 | 50 | ||
| 47 | @iftex | 51 | @iftex |
| @@ -208,6 +212,11 @@ Lisp variables instead of Lisp functions. Its default is the Lisp symbol | |||
| 208 | around or before point, but only if that is the name of a known Lisp | 212 | around or before point, but only if that is the name of a known Lisp |
| 209 | variable. @xref{Variables}.@refill | 213 | variable. @xref{Variables}.@refill |
| 210 | 214 | ||
| 215 | Help buffers describing variables or functions defined in Lisp | ||
| 216 | normally have hyperlinks to their definitions using the @code{find-func} | ||
| 217 | package if you have the Lisp source files installed. If you can read | ||
| 218 | Lisp, this provides the ultimate documentation. | ||
| 219 | |||
| 211 | @node Apropos | 220 | @node Apropos |
| 212 | @section Apropos | 221 | @section Apropos |
| 213 | 222 | ||
| @@ -485,3 +494,14 @@ displays general information about the GNU Project. @kbd{C-h P} | |||
| 485 | (@code{view-emacs-problems}) displays the file | 494 | (@code{view-emacs-problems}) displays the file |
| 486 | @file{emacs/etc/PROBLEMS}, which lists known problems with Emacs in | 495 | @file{emacs/etc/PROBLEMS}, which lists known problems with Emacs in |
| 487 | various situations with solutions or workarounds in many cases. | 496 | various situations with solutions or workarounds in many cases. |
| 497 | |||
| 498 | @node Help Echo | ||
| 499 | @section Help on Active Text and Tooltips | ||
| 500 | |||
| 501 | @cindex tooltips | ||
| 502 | @cindex ballon help | ||
| 503 | Often when a region of text is `active' so that you can select it with | ||
| 504 | the mouse or a key like @kbd{RET}, it has associated help text. Areas | ||
| 505 | of the mode line are examples. This help will normally be printed in | ||
| 506 | the echo area when you move point into the active text. In a window | ||
| 507 | system you can display the help text as `tooltips'. @xref{Tooltips}. | ||