home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / E17MAN.ZIP / HELP.TEX < prev    next >
Text File  |  1993-07-18  |  14KB  |  369 lines

  1. @c This is part of the Emacs manual.
  2. @c Copyright (C) 1985, 1986, 1987, 1993 Free Software Foundation, Inc.
  3. @c See file emacs.texi for copying conditions.
  4. @node Help, Mark, M-x, Top
  5. @chapter Help
  6. @kindex Help
  7. @cindex help
  8. @cindex self-documentation
  9.  
  10.   Emacs provides extensive help features accessible through a single
  11. character, @kbd{C-h}.  @kbd{C-h} is a prefix key that is used only for
  12. documentation-printing commands.  The characters that you can type after
  13. @kbd{C-h} are called @dfn{help options}.  One help option is @kbd{C-h};
  14. that is how you ask for help about using @kbd{C-h}.
  15.  
  16.   @kbd{C-h C-h} prints a list of the possible help options, and then asks
  17. you to go ahead and type the option.  It prompts with this string:
  18.  
  19. @smallexample
  20. a b c f i k l m n p s t v w C-c C-d C-n C-w.  Type C-h for more help:
  21. @end smallexample
  22.  
  23. @noindent
  24. You should then type one of those characters.
  25.  
  26.   Typing a third @kbd{C-h} displays a description of what the options mean;
  27. it still waits for you to type an option.  To cancel, type @kbd{C-g}.
  28.  
  29. @menu
  30. * Help Summary::    Brief list of all Help commands.
  31. * Key Help::        Asking what a key does in Emacs.
  32. * Name Help::        Asking about a command, variable or function name.
  33. * Apropos::        Asking what pertains to a given topic.
  34. * Library Keywords::    Finding Lisp libraries by keywords (topics).
  35. * Misc Help::        Other help commands.
  36. @end menu
  37.  
  38. @iftex
  39. @node Help Summary
  40. @end iftex
  41. @ifinfo
  42. @node Help Summary
  43. @section Help Summary
  44. @end ifinfo
  45.  
  46.   Here is a summary of the defined help commands.
  47.  
  48. @table @kbd
  49. @item C-h a @var{regexp} @key{RET}
  50. Display list of commands whose names match @var{regexp}
  51. (@code{command-apropos}).
  52. @item C-h b
  53. Display a table of all key bindings in effect now, in this order: minor
  54. mode bindings, major mode bindings, and global bindings
  55. (@code{describe-bindings}).
  56. @item C-h c @var{key}
  57. Print the name of the command that @var{key} runs
  58. (@code{describe-key-briefly}).  @kbd{c} is for `character'.  For more
  59. extensive information on @var{key}, use @kbd{C-h k}.
  60. @item C-h f @var{function} @key{RET}
  61. Display documentation on the Lisp function named @var{function}
  62. (@code{describe-function}).  Since commands are Lisp functions,
  63. a command name may be used.
  64. @item C-h i
  65. Run Info, the program for browsing documentation files (@code{info}).
  66. The complete Emacs manual is available on-line in Info.
  67. @item C-h k @var{key}
  68. Display name and documentation of the command that @var{key} runs
  69. (@code{describe-key}).
  70. @item C-h l
  71. Display a description of the last 100 characters you typed
  72. (@code{view-lossage}).
  73. @item C-h m
  74. Display documentation of the current major mode (@code{describe-mode}).
  75. @item C-h n
  76. Display documentation of Emacs changes, most recent first
  77. (@code{view-emacs-news}).
  78. @item C-h p
  79. Find packages by topic keyword (@code{finder-by-keyword}).
  80. @item C-h s
  81. Display current contents of the syntax table, plus an explanation of
  82. what they mean (@code{describe-syntax}).  @xref{Syntax}.
  83. @item C-h t
  84. Enter the Emacs interactive tutorial (@code{help-with-tutorial}).
  85. @item C-h v @var{var} @key{RET}
  86. Display the documentation of the Lisp variable @var{var}
  87. (@code{describe-variable}).
  88. @item C-h w @var{command} @key{RET}
  89. Print which keys run the command named @var{command} (@code{where-is}).
  90. @item C-h C-f @var{function} @key{RET}
  91. Enter Info and go to the node documenting the Emacs function @var{function}
  92. (@code{info-goto-emacs-command-node}).
  93. @item C-h C-k @var{key}
  94. Enter Info and go to the node where the key sequence @var{key} is
  95. documented (@code{info-goto-emacs-key-command-node}).
  96. @end table
  97.  
  98. @node Key Help
  99. @section Documentation for a Key
  100.  
  101. @kindex C-h c
  102. @findex describe-key-briefly
  103.   The most basic @kbd{C-h} options are @kbd{C-h c}
  104. (@code{describe-key-briefly}) and @kbd{C-h k} (@code{describe-key}).
  105. @kbd{C-h c @var{key}} prints in the echo area the name of the command
  106. that @var{key} is bound to.  For example, @kbd{C-h c C-f} prints
  107. @samp{forward-char}.  Since command names are chosen to describe what
  108. the commands do, this is a good way to get a very brief description of
  109. what @var{key} does.
  110.  
  111. @kindex C-h k
  112. @findex describe-key
  113.   @kbd{C-h k @var{key}} is similar but gives more information: it
  114. displays the documentation string of the command as well as its name.
  115. This is too big for the echo area, so a window is used for the display.
  116.  
  117.   @kbd{C-h c} and @kbd{C-h k} work for any sort of key sequences,
  118. including function keys and mouse events.
  119.  
  120. @node Name Help
  121. @section Help by Command or Variable Name
  122.  
  123. @kindex C-h f
  124. @findex describe-function
  125.   @kbd{C-h f} (@code{describe-function}) reads the name of a Lisp function
  126. using the minibuffer, then displays that function's documentation string
  127. in a window.  Since commands are Lisp functions, you can use this to get
  128. the documentation of a command that is known by name.  For example,
  129.  
  130. @example
  131. C-h f auto-fill-mode @key{RET}
  132. @end example
  133.  
  134. @noindent
  135. displays the documentation of @code{auto-fill-mode}.  This is the only
  136. way to get the documentation of a command that is not bound to any key
  137. (one which you would normally run using @kbd{M-x}).
  138.  
  139.   @kbd{C-h f} is also useful for Lisp functions that you are planning to
  140. use in a Lisp program.  For example, if you have just written the
  141. expression @code{(make-vector len)} and want to check that you are using
  142. @code{make-vector} properly, type @kbd{C-h f make-vector @key{RET}}.
  143. Because @kbd{C-h f} allows all function names, not just command names,
  144. you may find that some of your favorite abbreviations that work in
  145. @kbd{M-x} don't work in @kbd{C-h f}.  An abbreviation may be unique
  146. among command names yet fail to be unique when other function names are
  147. allowed.
  148.  
  149.   The function name for @kbd{C-h f} to describe has a default which is
  150. used if you type @key{RET} leaving the minibuffer empty.  The default is
  151. the function called by the innermost Lisp expression in the buffer around
  152. point, @emph{provided} that is a valid, defined Lisp function name.  For
  153. example, if point is located following the text @samp{(make-vector (car
  154. x)}, the innermost list containing point is the one that starts with
  155. @samp{(make-vector}, so the default is to describe the function
  156. @code{make-vector}.
  157.  
  158.   @kbd{C-h f} is often useful just to verify that you have the right
  159. spelling for the function name.  If @kbd{C-h f} mentions a default in
  160. the prompt, you have typed the name of a defined Lisp function.  If that
  161. is all you want to know, just type @kbd{C-g} to cancel the @kbd{C-h f}
  162. command, then go on editing.
  163.  
  164. @kindex C-h w
  165. @findex where-is
  166.   @kbd{C-h w @var{command} @key{RET}} tells you what keys are bound to
  167. @var{command}.  It prints a list of the keys in the echo area.  If it
  168. says the command is not on any key, you must use @kbd{M-x} to run it.
  169.  
  170.   @kbd{C-h v} (@code{describe-variable}) is like @kbd{C-h f} but describes
  171. Lisp variables instead of Lisp functions.  Its default is the Lisp symbol
  172. around or before point, but only if that is the name of a known Lisp
  173. variable.  @xref{Variables}.@refill
  174.  
  175. @node Apropos
  176. @section Apropos
  177.  
  178. @kindex C-h a
  179. @findex command-apropos
  180. @cindex apropos
  181.   A more sophisticated sort of question to ask is, ``What are the
  182. commands for working with files?''  To ask this question, type @kbd{C-h
  183. a file @key{RET}}, which displays a list of all command names that
  184. contain @samp{file}, including @code{copy-file}, @code{find-file}, and
  185. so on.  With each command name appears a brief description of how to use
  186. the command, and what keys you can currently invoke it with.  For
  187. example, it would say that you can invoke @code{find-file} by typing
  188. @kbd{C-x C-f}.  The @kbd{a} in @kbd{C-h a} stands for `Apropos';
  189. @kbd{C-h a} runs the command @code{command-apropos}.
  190.  
  191.   Because @kbd{C-h a} looks only for functions whose names contain the
  192. string which you specify, you must use ingenuity in choosing the
  193. string.  If you are looking for commands for killing backwards and
  194. @kbd{C-h a kill-backwards @key{RET}} doesn't reveal any, don't give up.
  195. Try just @kbd{kill}, or just @kbd{backwards}, or just @kbd{back}.  Be
  196. persistent.  Also note that you can use a regular expression as the
  197. argument, for more flexibility (@pxref{Regexps}).
  198.  
  199.   Here is a set of arguments to give to @kbd{C-h a} that covers many
  200. classes of Emacs commands, since there are strong conventions for naming
  201. the standard Emacs commands.  By giving you a feel for the naming
  202. conventions, this set should also serve to aid you in developing a
  203. technique for picking @code{apropos} strings.
  204.  
  205. @quotation
  206. char, line, word, sentence, paragraph, region, page, sexp, list, defun,
  207. rect, buffer, frame, window, file, dir, register, mode, beginning, end,
  208. forward, backward, next, previous, up, down, search, goto, kill, delete,
  209. mark, insert, yank, fill, indent, case, change, set, what, list, find,
  210. view, describe.
  211. @end quotation
  212.  
  213. @findex apropos
  214.   To list all Lisp symbols that contain a match for a regexp, not just
  215. the ones that are defined as commands, use the command @kbd{M-x apropos}
  216. instead of @kbd{C-h a}.  This command does not check key bindings by
  217. default; specify a numeric argument if you want it to check them.
  218.  
  219. @findex super-apropos
  220.   The @code{super-apropos} command is like @code{apropos} except that it
  221. searches documentation strings as well as symbol names for matches for
  222. the specified regular expression.
  223.  
  224. @node Library Keywords
  225. @section Keyword Search for Lisp Libraries
  226.  
  227. @kindex C-h p
  228. @findex finder-by-keyword
  229. The @kbd{C-h p} command lets you search the standard Emacs Lisp
  230. libraries by topic keywords.  Here is a partial list of keywords you can
  231. use:
  232.  
  233. @table @samp
  234. @item abbrev
  235. Abbreviation handling, typing shortcuts, macros.
  236. @item bib
  237. Support for the bibliography processor @code{bib}.
  238. @item c
  239. C and C++ language support.
  240. @item calendar
  241. Calendar and time management support.
  242. @item comm
  243. Communications, networking, remote access to files.
  244. @item docs
  245. Support for Emacs documentation.
  246. @item emulations
  247. Emulations of other editors.
  248. @item extensions
  249. Emacs Lisp language extensions.
  250. @item faces
  251. Support for using faces (fonts and colors; @pxref{Faces}).
  252. @item games
  253. Games, jokes and amusements.
  254. @item hardware
  255. Support for interfacing with exotic hardware.
  256. @item help
  257. Support for on-line help systems.
  258. @item i18n
  259. Internationalization and alternate character-set support.
  260. @item internal
  261. Code for Emacs internals, build process, defaults.
  262. @item languages
  263. Specialized modes for editing programming languages.
  264. @item lisp
  265. Support for using Lisp (including Emacs Lisp).
  266. @item local
  267. Libraries local to your site.
  268. @item maint
  269. Maintenance aids for the Emacs development group.
  270. @item mail
  271. Modes for electronic-mail handling.
  272. @item news
  273. Support for netnews reading and posting.
  274. @item non-text
  275. Support for editing files that are not ordinary text.
  276. @item processes
  277. Process, subshell, compilation, and job control support.
  278. @item terminals
  279. Support for terminal types.
  280. @item tex
  281. Support for the @TeX{} formatter.
  282. @item tools
  283. Programming tools.
  284. @item unix
  285. Front-ends/assistants for, or emulators of, Unix features.
  286. @item vms
  287. Support code for VMS.
  288. @item wp
  289. Word processing.
  290. @end table
  291.  
  292. @node Misc Help
  293. @section Other Help Commands
  294.  
  295. @kindex C-h i
  296. @findex info
  297. @cindex Info
  298. @cindex manuals, on-line
  299. @cindex on-line manuals
  300.   @kbd{C-h i} (@code{info}) runs the Info program, which is used for
  301. browsing through structured documentation files.  The entire Emacs manual
  302. is available within Info.  Eventually all the documentation of the GNU
  303. system will be available.  Type @kbd{h} after entering Info to run
  304. a tutorial on using Info.
  305.  
  306. @kindex C-h C-f
  307. @kindex C-h C-k
  308. @findex Info-goto-emacs-key-command-node
  309. @findex Info-goto-emacs-command-node
  310.   There are two special help commands for accessing Emacs documentation
  311. through Info.  @kbd{C-h C-f @var{function} @key{RET}} enters Info and
  312. goes straight to the documentation of the Emacs function
  313. @var{function}.  @kbd{C-h C-k @var{key}} enters Info and goes straight
  314. to the documentation of the key @var{key}.  These two keys run the
  315. commands @code{Info-goto-emacs-command-node} and
  316. @code{Info-goto-emacs-key-command-node}.
  317.  
  318. @kindex C-h l
  319. @findex view-lossage
  320.   If something surprising happens, and you are not sure what commands you
  321. typed, use @kbd{C-h l} (@code{view-lossage}).  @kbd{C-h l} prints the last
  322. 100 command characters you typed in.  If you see commands that you don't
  323. know, you can use @kbd{C-h c} to find out what they do.
  324.  
  325. @kindex C-h m
  326. @findex describe-mode
  327.   Emacs has numerous major modes, each of which redefines a few keys and
  328. makes a few other changes in how editing works.  @kbd{C-h m}
  329. (@code{describe-mode}) prints documentation on the current major mode,
  330. which normally describes all the commands that are changed in this
  331. mode.
  332.  
  333. @kindex C-h b
  334. @findex describe-bindings
  335.   @kbd{C-h b} (@code{describe-bindings}) and @kbd{C-h s}
  336. (@code{describe-syntax}) present other information about the current
  337. Emacs mode.  @kbd{C-h b} displays a list of all the key bindings now in
  338. effect; the local bindings defined by the current minor modes first,
  339. then the local bindings defined by the current major mode, and finally
  340. the global bindings (@pxref{Key Bindings}).  @kbd{C-h s} displays the
  341. contents of the syntax table, with explanations of each character's
  342. syntax (@pxref{Syntax}).
  343.  
  344.   You can get a similar list for a particular prefix key by typing
  345. @kbd{C-h} after the prefix key.  (There are a few prefix keys for which
  346. this does not work---those that provide their own bindings for
  347. @kbd{C-h}.  One of these is @key{ESC}, because @kbd{@key{ESC} C-h} is
  348. actually @kbd{C-M-h}, which marks a defun.)
  349.  
  350. @kindex C-h n
  351. @findex view-emacs-news
  352. @kindex C-h C-c
  353. @findex describe-copying
  354. @kindex C-h C-d
  355. @findex describe-distribution
  356. @kindex C-h C-w
  357. @findex describe-no-warranty
  358.   The other @kbd{C-h} options display various files of useful information.
  359. @kbd{C-h C-w} displays the full details on the complete absence of warranty
  360. for GNU Emacs.  @kbd{C-h n} (@code{view-emacs-news}) displays the file
  361. @file{emacs/etc/NEWS}, which contains documentation on Emacs changes
  362. arranged chronologically.  @kbd{C-h t} (@code{help-with-tutorial}) displays
  363. the learn-by-doing Emacs tutorial.  @kbd{C-h C-c} (@code{describe-copying})
  364. displays the file @file{emacs/etc/COPYING}, which tells you the conditions
  365. you must obey in distributing copies of Emacs.  @kbd{C-h C-d}
  366. (@code{describe-distribution}) displays the file @file{emacs/etc/DISTRIB},
  367. which tells you how you can order a copy of the latest version of
  368. Emacs.@refill
  369.