home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / texinfo-3.7-bin.lha / info / info-stnd.info (.txt) next >
GNU Info File  |  1996-10-12  |  53KB  |  1,012 lines

  1. This is Info file info-stnd.info, produced by Makeinfo-1.64 from the
  2. input file info-stnd.texi.
  3. This file documents GNU Info, a program for viewing the on-line
  4. formatted versions of Texinfo files.  This documentation is different
  5. from the documentation for the Info reader that is part of GNU Emacs.
  6. If you do not know how to use Info, but have a working Info reader, you
  7. should read that documentation first.
  8. Copyright (C) 1992, 1993 Free Software Foundation, Inc.
  9. Permission is granted to make and distribute verbatim copies of this
  10. manual provided the copyright notice and this permission notice are
  11. preserved on all copies.
  12. Permission is granted to copy and distribute modified versions of this
  13. manual under the conditions for verbatim copying, provided also that the
  14. sections entitled "Copying" and "GNU General Public License" are
  15. included exactly as in the original, and provided that the entire
  16. resulting derived work is distributed under the terms of a permission
  17. notice identical to this one.
  18. Permission is granted to copy and distribute translations of this manual
  19. into another language, under the above conditions for modified versions,
  20. except that this permission notice may be stated in a translation
  21. approved by the Free Software Foundation.
  22. File: info-stnd.info,  Node: Top,  Next: What is Info,  Prev: (dir),  Up: (dir)
  23. The GNU Info Program
  24. ********************
  25. This file documents GNU Info, a program for viewing the on-line
  26. formatted versions of Texinfo files, version 2.11.  This documentation
  27. is different from the documentation for the Info reader that is part of
  28. GNU Emacs.
  29. * Menu:
  30. * What is Info::
  31. * Options::                     Options you can pass on the command line.
  32. * Cursor Commands::             Commands which move the cursor within a node.
  33. * Scrolling Commands::          Commands for moving the node around
  34.                                   in a window.
  35. * Node Commands::               Commands for selecting a new node.
  36. * Searching Commands::          Commands for searching an Info file.
  37. * Xref Commands::               Commands for selecting cross references.
  38. * Window Commands::             Commands which manipulate multiple windows.
  39. * Printing Nodes::              How to print out the contents of a node.
  40. * Miscellaneous Commands::      A few commands that defy categories.
  41. * Variables::                   How to change the default behavior of Info.
  42. * GNU Info Global Index::       Global index containing keystrokes,
  43.                                   command names, variable names,
  44.                                   and general concepts.
  45. File: info-stnd.info,  Node: What is Info,  Next: Options,  Prev: Top,  Up: Top
  46. What is Info?
  47. *************
  48. "Info" is a program which is used to view Info files on an ASCII
  49. terminal.  "Info files" are the result of processing Texinfo files with
  50. the program `makeinfo' or with one of the Emacs commands, such as `M-x
  51. texinfo-format-buffer'.  Texinfo itself is a documentation system that
  52. uses a single source file to produce both on-line information and
  53. printed output.  You can typeset and print the files that you read in
  54. Info.
  55. File: info-stnd.info,  Node: Options,  Next: Cursor Commands,  Prev: What is Info,  Up: Top
  56. Command Line Options
  57. ********************
  58. GNU Info accepts several options to control the initial node being
  59. viewed, and to specify which directories to search for Info files.  Here
  60. is a template showing an invocation of GNU Info from the shell:
  61.      info [--OPTION-NAME OPTION-VALUE] MENU-ITEM...
  62. The following OPTION-NAMES are available when invoking Info from the
  63. shell:
  64. `--directory DIRECTORY-PATH'
  65. `-d DIRECTORY-PATH'
  66.      Add DIRECTORY-PATH to the list of directory paths searched when
  67.      Info needs to find a file.  You may issue `--directory' multiple
  68.      times; once for each directory which contains Info files.
  69.      Alternatively, you may specify a value for the environment variable
  70.      `INFOPATH'; if `--directory' is not given, the value of `INFOPATH'
  71.      is used.  The value of `INFOPATH' is a colon separated list of
  72.      directory names.  If you do not supply `INFOPATH' or
  73.      `--directory-path', Info uses a default path.
  74. `--file FILENAME'
  75. `-f FILENAME'
  76.      Specify a particular Info file to visit.  By default, Info visits
  77.      the file `dir'; if you use this option, Info will start with
  78.      `(FILENAME)Top' as the first file and node.
  79. `--node NODENAME'
  80. `-n NODENAME'
  81.      Specify a particular node to visit in the initial file that Info
  82.      loads.  This is especially useful in conjunction with `--file'(1).
  83.      You may specify `--node' multiple times; for an interactive Info,
  84.      each NODENAME is visited in its own window, for a non-interactive
  85.      Info (such as when `--output' is given) each NODENAME is processed
  86.      sequentially.
  87. `--output FILENAME'
  88. `-o FILENAME'
  89.      Specify FILENAME as the name of a file to which to direct output.
  90.      Each node that Info visits will be output to FILENAME instead of
  91.      interactively viewed.  A value of `-' for FILENAME specifies the
  92.      standard output.
  93. `--subnodes'
  94.      This option only has meaning when given in conjunction with
  95.      `--output'.  It means to recursively output the nodes appearing in
  96.      the menus of each node being output.  Menu items which resolve to
  97.      external Info files are not output, and neither are menu items
  98.      which are members of an index.  Each node is only output once.
  99. `--help'
  100.      Produces a relatively brief description of the available Info
  101.      options.
  102. `--version'
  103.      Prints the version information of Info and exits.
  104. `MENU-ITEM'
  105.      Info treats its remaining arguments as the names of menu items.
  106.      The first argument is a menu item in the initial node visited,
  107.      while the second argument is a menu item in the first argument's
  108.      node.  You can easily move to the node of your choice by
  109.      specifying the menu names which describe the path to that node.
  110.      For example,
  111.           info emacs buffers
  112.      first selects the menu item `Emacs' in the node `(dir)Top', and
  113.      then selects the menu item `Buffers' in the node `(emacs)Top'.
  114. ---------- Footnotes ----------
  115. (1)  Of course, you can specify both the file and node in a `--node'
  116. command; but don't forget to escape the open and close parentheses from
  117. the shell as in: `info --node "(emacs)Buffers"'
  118. File: info-stnd.info,  Node: Cursor Commands,  Next: Scrolling Commands,  Prev: Options,  Up: Top
  119. Moving the Cursor
  120. *****************
  121. Many people find that reading screens of text page by page is made
  122. easier when one is able to indicate particular pieces of text with some
  123. kind of pointing device.  Since this is the case, GNU Info (both the
  124. Emacs and standalone versions) have several commands which allow you to
  125. move the cursor about the screen.  The notation used in this manual to
  126. describe keystrokes is identical to the notation used within the Emacs
  127. manual, and the GNU Readline manual.  *Note Character Conventions:
  128. (emacs)Characters, if you are unfamiliar with the notation.
  129. The following table lists the basic cursor movement commands in Info.
  130. Each entry consists of the key sequence you should type to execute the
  131. cursor movement, the `M-x'(1) command name (displayed in parentheses),
  132. and a short description of what the command does.  All of the cursor
  133. motion commands can take an "numeric" argument (*note
  134. `universal-argument': Miscellaneous Commands.), to find out how to
  135. supply them.  With a numeric argument, the motion commands are simply
  136. executed that many times; for example, a numeric argument of 4 given to
  137. `next-line' causes the cursor to move down 4 lines.  With a negative
  138. numeric argument, the motion is reversed; an argument of -4 given to
  139. the `next-line' command would cause the cursor to move *up* 4 lines.
  140. `C-n' (`next-line')
  141.      Move the cursor down to the next line.
  142. `C-p' (`prev-line')
  143.      Move the cursor up to the previous line.
  144. `C-a' (`beginning-of-line')
  145.      Move the cursor to the start of the current line.
  146. `C-e' (`end-of-line')
  147.      Move the cursor to the end of the current line.
  148. `C-f' (`forward-char')
  149.      Move the cursor forward a character.
  150. `C-b' (`backward-char')
  151.      Move the cursor backward a character.
  152. `M-f' (`forward-word')
  153.      Move the cursor forward a word.
  154. `M-b' (`backward-word')
  155.      Move the cursor backward a word.
  156. `M-<' (`beginning-of-node')
  157.      Move the cursor to the start of the current node.
  158. `M->' (`end-of-node')
  159.      Move the cursor to the end of the current node.
  160. `M-r' (`move-to-window-line')
  161.      Move the cursor to a specific line of the window.  Without a
  162.      numeric argument, `M-r' moves the cursor to the start of the line
  163.      in the center of the window.  With a numeric argument of N, `M-r'
  164.      moves the cursor to the start of the Nth line in the window.
  165. ---------- Footnotes ----------
  166. (1)  `M-x' is also a command; it invokes `execute-extended-command'.
  167. *Note Executing an extended command: (emacs)M-x, for more detailed
  168. information.
  169. File: info-stnd.info,  Node: Scrolling Commands,  Next: Node Commands,  Prev: Cursor Commands,  Up: Top
  170. Moving Text Within a Window
  171. ***************************
  172. Sometimes you are looking at a screenful of text, and only part of the
  173. current paragraph you are reading is visible on the screen.  The
  174. commands detailed in this section are used to shift which part of the
  175. current node is visible on the screen.
  176. `SPC' (`scroll-forward')
  177. `C-v'
  178.      Shift the text in this window up.  That is, show more of the node
  179.      which is currently below the bottom of the window.  With a numeric
  180.      argument, show that many more lines at the bottom of the window; a
  181.      numeric argument of 4 would shift all of the text in the window up
  182.      4 lines (discarding the top 4 lines), and show you four new lines
  183.      at the bottom of the window.  Without a numeric argument, SPC
  184.      takes the bottom two lines of the window and places them at the
  185.      top of the window, redisplaying almost a completely new screenful
  186.      of lines.
  187. `DEL' (`scroll-backward')
  188. `M-v'
  189.      Shift the text in this window down.  The inverse of
  190.      `scroll-forward'.
  191. The `scroll-forward' and `scroll-backward' commands can also move
  192. forward and backward through the node structure of the file.  If you
  193. press SPC while viewing the end of a node, or DEL while viewing the
  194. beginning of a node, what happens is controlled by the variable
  195. `scroll-behavior'.  *Note `scroll-behavior': Variables, for more
  196. information.
  197. `C-l' (`redraw-display')
  198.      Redraw the display from scratch, or shift the line containing the
  199.      cursor to a specified location.  With no numeric argument, `C-l'
  200.      clears the screen, and then redraws its entire contents.  Given a
  201.      numeric argument of N, the line containing the cursor is shifted
  202.      so that it is on the Nth line of the window.
  203. `C-x w' (`toggle-wrap')
  204.      Toggles the state of line wrapping in the current window.
  205.      Normally, lines which are longer than the screen width "wrap",
  206.      i.e., they are continued on the next line.  Lines which wrap have
  207.      a `\' appearing in the rightmost column of the screen.  You can
  208.      cause such lines to be terminated at the rightmost column by
  209.      changing the state of line wrapping in the window with `C-x w'.
  210.      When a line which needs more space than one screen width to
  211.      display is displayed, a `$' appears in the rightmost column of the
  212.      screen, and the remainder of the line is invisible.
  213. File: info-stnd.info,  Node: Node Commands,  Next: Searching Commands,  Prev: Scrolling Commands,  Up: Top
  214. Selecting a New Node
  215. ********************
  216. This section details the numerous Info commands which select a new node
  217. to view in the current window.
  218. The most basic node commands are `n', `p', `u', and `l'.
  219. When you are viewing a node, the top line of the node contains some Info
  220. "pointers" which describe where the next, previous, and up nodes are.
  221. Info uses this line to move about the node structure of the file when
  222. you use the following commands:
  223. `n' (`next-node')
  224.      Select the `Next' node.
  225. `p' (`prev-node')
  226.      Select the `Prev' node.
  227. `u' (`up-node')
  228.      Select the `Up' node.
  229. You can easily select a node that you have already viewed in this window
  230. by using the `l' command - this name stands for "last", and actually
  231. moves through the list of already visited nodes for this window.  `l'
  232. with a negative numeric argument moves forward through the history of
  233. nodes for this window, so you can quickly step between two adjacent (in
  234. viewing history) nodes.
  235. `l' (`history-node')
  236.      Select the most recently selected node in this window.
  237. Two additional commands make it easy to select the most commonly
  238. selected nodes; they are `t' and `d'.
  239. `t' (`top-node')
  240.      Select the node `Top' in the current Info file.
  241. `d' (`dir-node')
  242.      Select the directory node (i.e., the node `(dir)').
  243. Here are some other commands which immediately result in the selection
  244. of a different node in the current window:
  245. `<' (`first-node')
  246.      Selects the first node which appears in this file.  This node is
  247.      most often `Top', but it does not have to be.
  248. `>' (`last-node')
  249.      Select the last node which appears in this file.
  250. `]' (`global-next-node')
  251.      Move forward or down through node structure.  If the node that you
  252.      are currently viewing has a `Next' pointer, that node is selected.
  253.      Otherwise, if this node has a menu, the first menu item is
  254.      selected.  If there is no `Next' and no menu, the same process is
  255.      tried with the `Up' node of this node.
  256. `[' (`global-prev-node')
  257.      Move backward or up through node structure.  If the node that you
  258.      are currently viewing has a `Prev' pointer, that node is selected.
  259.      Otherwise, if the node has an `Up' pointer, that node is selected,
  260.      and if it has a menu, the last item in the menu is selected.
  261. You can get the same behavior as `global-next-node' and
  262. `global-prev-node' while simply scrolling through the file with SPC and
  263. DEL; *Note `scroll-behavior': Variables, for more information.
  264. `g' (`goto-node')
  265.      Read the name of a node and select it.  No completion is done while
  266.      reading the node name, since the desired node may reside in a
  267.      separate file.  The node must be typed exactly as it appears in
  268.      the Info file.  A file name may be included as with any node
  269.      specification, for example
  270.           `g(emacs)Buffers'
  271.      finds the node `Buffers' in the Info file `emacs'.
  272. `C-x k' (`kill-node')
  273.      Kill a node.  The node name is prompted for in the echo area, with
  274.      a default of the current node.  "Killing" a node means that Info
  275.      tries hard to forget about it, removing it from the list of
  276.      history nodes kept for the window where that node is found.
  277.      Another node is selected in the window which contained the killed
  278.      node.
  279. `C-x C-f' (`view-file')
  280.      Read the name of a file and selects the entire file.  The command
  281.           `C-x C-f FILENAME'
  282.      is equivalent to typing
  283.           `g(FILENAME)*'
  284. `C-x C-b' (`list-visited-nodes')
  285.      Make a window containing a menu of all of the currently visited
  286.      nodes.  This window becomes the selected window, and you may use
  287.      the standard Info commands within it.
  288. `C-x b' (`select-visited-node')
  289.      Select a node which has been previously visited in a visible
  290.      window.  This is similar to `C-x C-b' followed by `m', but no
  291.      window is created.
  292. File: info-stnd.info,  Node: Searching Commands,  Next: Xref Commands,  Prev: Node Commands,  Up: Top
  293. Searching an Info File
  294. **********************
  295. GNU Info allows you to search for a sequence of characters throughout an
  296. entire Info file, search through the indices of an Info file, or find
  297. areas within an Info file which discuss a particular topic.
  298. `s' (`search')
  299.      Read a string in the echo area and search for it.
  300. `C-s' (`isearch-forward')
  301.      Interactively search forward through the Info file for a string as
  302.      you type it.
  303. `C-r' (`isearch-backward')
  304.      Interactively search backward through the Info file for a string as
  305.      you type it.
  306. `i' (`index-search')
  307.      Look up a string in the indices for this Info file, and select a
  308.      node where the found index entry points to.
  309. `,' (`next-index-match')
  310.      Move to the node containing the next matching index item from the
  311.      last `i' command.
  312. The most basic searching command is `s' (`search').  The `s' command
  313. prompts you for a string in the echo area, and then searches the
  314. remainder of the Info file for an occurrence of that string.  If the
  315. string is found, the node containing it is selected, and the cursor is
  316. left positioned at the start of the found string.  Subsequent `s'
  317. commands show you the default search string within `[' and `]';
  318. pressing RET instead of typing a new string will use the default search
  319. string.
  320. "Incremental searching" is similar to basic searching, but the string
  321. is looked up while you are typing it, instead of waiting until the
  322. entire search string has been specified.
  323. File: info-stnd.info,  Node: Xref Commands,  Next: Window Commands,  Prev: Searching Commands,  Up: Top
  324. Selecting Cross References
  325. **************************
  326. We have already discussed the `Next', `Prev', and `Up' pointers which
  327. appear at the top of a node.  In addition to these pointers, a node may
  328. contain other pointers which refer you to a different node, perhaps in
  329. another Info file.  Such pointers are called "cross references", or
  330. "xrefs" for short.
  331. * Menu:
  332. * Parts of an Xref::            What a cross reference is made of.
  333. * Selecting Xrefs::             Commands for selecting menu or note items.
  334. File: info-stnd.info,  Node: Parts of an Xref,  Next: Selecting Xrefs,  Up: Xref Commands
  335. Parts of an Xref
  336. ================
  337. Cross references have two major parts: the first part is called the
  338. "label"; it is the name that you can use to refer to the cross
  339. reference, and the second is the "target"; it is the full name of the
  340. node that the cross reference points to.
  341. The target is separated from the label by a colon `:'; first the label
  342. appears, and then the target.  For example, in the sample menu cross
  343. reference below, the single colon separates the label from the target.
  344.      * Foo Label: Foo Target.        More information about Foo.
  345. Note the `.' which ends the name of the target.  The `.' is not part of
  346. the target; it serves only to let Info know where the target name ends.
  347. A shorthand way of specifying references allows two adjacent colons to
  348. stand for a target name which is the same as the label name:
  349.      * Foo Commands::                Commands pertaining to Foo.
  350. In the above example, the name of the target is the same as the name of
  351. the label, in this case `Foo Commands'.
  352. You will normally see two types of cross reference while viewing nodes:
  353. "menu" references, and "note" references.  Menu references appear
  354. within a node's menu; they begin with a `*' at the beginning of a line,
  355. and continue with a label, a target, and a comment which describes what
  356. the contents of the node pointed to contains.
  357. Note references appear within the body of the node text; they begin with
  358. `*Note', and continue with a label and a target.
  359. Like `Next', `Prev', and `Up' pointers, cross references can point to
  360. any valid node.  They are used to refer you to a place where more
  361. detailed information can be found on a particular subject.  Here is a
  362. cross reference which points to a node within the Texinfo
  363. documentation:  *Note Writing an Xref: (texinfo)xref, for more
  364. information on creating your own texinfo cross references.
  365. File: info-stnd.info,  Node: Selecting Xrefs,  Prev: Parts of an Xref,  Up: Xref Commands
  366. Selecting Xrefs
  367. ===============
  368. The following table lists the Info commands which operate on menu items.
  369. `1' (`menu-digit')
  370. `2' ... `9'
  371.      Within an Info window, pressing a single digit, (such as `1'),
  372.      selects that menu item, and places its node in the current window.
  373.      For convenience, there is one exception; pressing `0' selects the
  374.      *last* item in the node's menu.
  375. `0' (`last-menu-item')
  376.      Select the last item in the current node's menu.
  377. `m' (`menu-item')
  378.      Reads the name of a menu item in the echo area and selects its
  379.      node.  Completion is available while reading the menu label.
  380. `M-x find-menu'
  381.      Move the cursor to the start of this node's menu.
  382. This table lists the Info commands which operate on note cross
  383. references.
  384. `f' (`xref-item')
  385.      Reads the name of a note cross reference in the echo area and
  386.      selects its node.  Completion is available while reading the cross
  387.      reference label.
  388. Finally, the next few commands operate on menu or note references alike:
  389. `TAB' (`move-to-next-xref')
  390.      Move the cursor to the start of the next nearest menu item or note
  391.      reference in this node.  You can then use RET
  392.      (`select-reference-this-line') to select the menu or note
  393.      reference.
  394. `M-TAB' (`move-to-prev-xref')
  395.      Move the cursor the start of the nearest previous menu item or note
  396.      reference in this node.
  397. `RET' (`select-reference-this-line')
  398.      Select the menu item or note reference appearing on this line.
  399. File: info-stnd.info,  Node: Window Commands,  Next: Printing Nodes,  Prev: Xref Commands,  Up: Top
  400. Manipulating Multiple Windows
  401. *****************************
  402. A "window" is a place to show the text of a node.  Windows have a view
  403. area where the text of the node is displayed, and an associated "mode
  404. line", which briefly describes the node being viewed.
  405. GNU Info supports multiple windows appearing in a single screen; each
  406. window is separated from the next by its modeline.  At any time, there
  407. is only one "active" window, that is, the window in which the cursor
  408. appears.  There are commands available for creating windows, changing
  409. the size of windows, selecting which window is active, and for deleting
  410. windows.
  411. * Menu:
  412. * The Mode Line::               What appears in the mode line?
  413. * Basic Windows::               Manipulating windows in Info.
  414. * The Echo Area::               Used for displaying errors and reading input.
  415. File: info-stnd.info,  Node: The Mode Line,  Next: Basic Windows,  Up: Window Commands
  416. The Mode Line
  417. =============
  418. A "mode line" is a line of inverse video which appears at the bottom of
  419. an Info window.  It describes the contents of the window just above it;
  420. this information includes the name of the file and node appearing in
  421. that window, the number of screen lines it takes to display the node,
  422. and the percentage of text that is above the top of the window.  It can
  423. also tell you if the indirect tags table for this Info file needs to be
  424. updated, and whether or not the Info file was compressed when stored on
  425. disk.
  426. Here is a sample mode line for a window containing an uncompressed file
  427. named `dir', showing the node `Top'.
  428.      -----Info: (dir)Top, 40 lines --Top---------------------------------------
  429.                  ^^   ^   ^^^        ^^
  430.                (file)Node #lines    where
  431. When a node comes from a file which is compressed on disk, this is
  432. indicated in the mode line with two small `z''s.  In addition, if the
  433. Info file containing the node has been split into subfiles, the name of
  434. the subfile containing the node appears in the modeline as well:
  435.      --zz-Info: (emacs)Top, 291 lines --Top-- Subfile: emacs-1.Z---------------
  436. When Info makes a node internally, such that there is no corresponding
  437. info file on disk, the name of the node is surrounded by asterisks
  438. (`*').  The name itself tells you what the contents of the window are;
  439. the sample mode line below shows an internally constructed node showing
  440. possible completions:
  441.      -----Info: *Completions*, 7 lines --All-----------------------------------
  442. File: info-stnd.info,  Node: Basic Windows,  Next: The Echo Area,  Prev: The Mode Line,  Up: Window Commands
  443. Window Commands
  444. ===============
  445. It can be convenient to view more than one node at a time.  To allow
  446. this, Info can display more than one "window".  Each window has its own
  447. mode line (*note The Mode Line::.) and history of nodes viewed in that
  448. window (*note `history-node': Node Commands.).
  449. `C-x o' (`next-window')
  450.      Select the next window on the screen.  Note that the echo area can
  451.      only be selected if it is already in use, and you have left it
  452.      temporarily.  Normally, `C-x o' simply moves the cursor into the
  453.      next window on the screen, or if you are already within the last
  454.      window, into the first window on the screen.  Given a numeric
  455.      argument, `C-x o' moves over that many windows.  A negative
  456.      argument causes `C-x o' to select the previous window on the
  457.      screen.
  458. `M-x prev-window'
  459.      Select the previous window on the screen.  This is identical to
  460.      `C-x o' with a negative argument.
  461. `C-x 2' (`split-window')
  462.      Split the current window into two windows, both showing the same
  463.      node.  Each window is one half the size of the original window,
  464.      and the cursor remains in the original window.  The variable
  465.      `automatic-tiling' can cause all of the windows on the screen to
  466.      be resized for you automatically, please *note automatic-tiling:
  467.      Variables. for more information.
  468. `C-x 0' (`delete-window')
  469.      Delete the current window from the screen.  If you have made too
  470.      many windows and your screen appears cluttered, this is the way to
  471.      get rid of some of them.
  472. `C-x 1' (`keep-one-window')
  473.      Delete all of the windows excepting the current one.
  474. `ESC C-v' (`scroll-other-window')
  475.      Scroll the other window, in the same fashion that `C-v' might
  476.      scroll the current window.  Given a negative argument, scroll the
  477.      "other" window backward.
  478. `C-x ^' (`grow-window')
  479.      Grow (or shrink) the current window.  Given a numeric argument,
  480.      grow the current window that many lines; with a negative numeric
  481.      argument, shrink the window instead.
  482. `C-x t' (`tile-windows')
  483.      Divide the available screen space among all of the visible windows.
  484.      Each window is given an equal portion of the screen in which to
  485.      display its contents.  The variable `automatic-tiling' can cause
  486.      `tile-windows' to be called when a window is created or deleted.
  487.      *Note `automatic-tiling': Variables.
  488. File: info-stnd.info,  Node: The Echo Area,  Prev: Basic Windows,  Up: Window Commands
  489. The Echo Area
  490. =============
  491. The "echo area" is a one line window which appears at the bottom of the
  492. screen.  It is used to display informative or error messages, and to
  493. read lines of input from you when that is necessary.  Almost all of the
  494. commands available in the echo area are identical to their Emacs
  495. counterparts, so please refer to that documentation for greater depth of
  496. discussion on the concepts of editing a line of text.  The following
  497. table briefly lists the commands that are available while input is being
  498. read in the echo area:
  499. `C-f' (`echo-area-forward')
  500.      Move forward a character.
  501. `C-b' (`echo-area-backward')
  502.      Move backward a character.
  503. `C-a' (`echo-area-beg-of-line')
  504.      Move to the start of the input line.
  505. `C-e' (`echo-area-end-of-line')
  506.      Move to the end of the input line.
  507. `M-f' (`echo-area-forward-word')
  508.      Move forward a word.
  509. `M-b' (`echo-area-backward-word')
  510.      Move backward a word.
  511. `C-d' (`echo-area-delete')
  512.      Delete the character under the cursor.
  513. `DEL' (`echo-area-rubout')
  514.      Delete the character behind the cursor.
  515. `C-g' (`echo-area-abort')
  516.      Cancel or quit the current operation.  If completion is being read,
  517.      `C-g' discards the text of the input line which does not match any
  518.      completion.  If the input line is empty, `C-g' aborts the calling
  519.      function.
  520. `RET' (`echo-area-newline')
  521.      Accept (or forces completion of) the current input line.
  522. `C-q' (`echo-area-quoted-insert')
  523.      Insert the next character verbatim.  This is how you can insert
  524.      control characters into a search string, for example.
  525. PRINTING CHARACTER (`echo-area-insert')
  526.      Insert the character.
  527. `M-TAB' (`echo-area-tab-insert')
  528.      Insert a TAB character.
  529. `C-t' (`echo-area-transpose-chars')
  530.      Transpose the characters at the cursor.
  531. The next group of commands deal with "killing", and "yanking" text.
  532. For an in depth discussion of killing and yanking, *note Killing and
  533. Deleting: (emacs)Killing.
  534. `M-d' (`echo-area-kill-word')
  535.      Kill the word following the cursor.
  536. `M-DEL' (`echo-area-backward-kill-word')
  537.      Kill the word preceding the cursor.
  538. `C-k' (`echo-area-kill-line')
  539.      Kill the text from the cursor to the end of the line.
  540. `C-x DEL' (`echo-area-backward-kill-line')
  541.      Kill the text from the cursor to the beginning of the line.
  542. `C-y' (`echo-area-yank')
  543.      Yank back the contents of the last kill.
  544. `M-y' (`echo-area-yank-pop')
  545.      Yank back a previous kill, removing the last yanked text first.
  546. Sometimes when reading input in the echo area, the command that needed
  547. input will only accept one of a list of several choices.  The choices
  548. represent the "possible completions", and you must respond with one of
  549. them.  Since there are a limited number of responses you can make, Info
  550. allows you to abbreviate what you type, only typing as much of the
  551. response as is necessary to uniquely identify it.  In addition, you can
  552. request Info to fill in as much of the response as is possible; this is
  553. called "completion".
  554. The following commands are available when completing in the echo area:
  555. `TAB' (`echo-area-complete')
  556. `SPC'
  557.      Insert as much of a completion as is possible.
  558. `?' (`echo-area-possible-completions')
  559.      Display a window containing a list of the possible completions of
  560.      what you have typed so far.  For example, if the available choices
  561.      are:
  562.           bar
  563.           foliate
  564.           food
  565.           forget
  566.      and you have typed an `f', followed by `?', the possible
  567.      completions would contain:
  568.           foliate
  569.           food
  570.           forget
  571.      i.e., all of the choices which begin with `f'.  Pressing SPC or
  572.      TAB would result in `fo' appearing in the echo area, since all of
  573.      the choices which begin with `f' continue with `o'.  Now, typing
  574.      `l' followed by `TAB' results in `foliate' appearing in the echo
  575.      area, since that is the only choice which begins with `fol'.
  576. `ESC C-v' (`echo-area-scroll-completions-window')
  577.      Scroll the completions window, if that is visible, or the "other"
  578.      window if not.
  579. File: info-stnd.info,  Node: Printing Nodes,  Next: Miscellaneous Commands,  Prev: Window Commands,  Up: Top
  580. Printing Out Nodes
  581. ******************
  582. You may wish to print out the contents of a node as  a quick reference
  583. document for later use.  Info provides you with a command for doing
  584. this.  In general, we recommend that you use TeX to format the document
  585. and print sections of it, by running `tex' on the Texinfo source file.
  586. `M-x print-node'
  587.      Pipe the contents of the current node through the command in the
  588.      environment variable `INFO_PRINT_COMMAND'.  If the variable does
  589.      not exist, the node is simply piped to `lpr'.
  590. File: info-stnd.info,  Node: Miscellaneous Commands,  Next: Variables,  Prev: Printing Nodes,  Up: Top
  591. Miscellaneous Commands
  592. **********************
  593. GNU Info contains several commands which self-document GNU Info:
  594. `M-x describe-command'
  595.      Read the name of an Info command in the echo area and then display
  596.      a brief description of what that command does.
  597. `M-x describe-key'
  598.      Read a key sequence in the echo area, and then display the name and
  599.      documentation of the Info command that the key sequence invokes.
  600. `M-x describe-variable'
  601.      Read the name of a variable in the echo area and then display a
  602.      brief description of what the variable affects.
  603. `M-x where-is'
  604.      Read the name of an Info command in the echo area, and then display
  605.      a key sequence which can be typed in order to invoke that command.
  606. `C-h' (`get-help-window')
  607.      Create (or Move into) the window displaying `*Help*', and place a
  608.      node containing a quick reference card into it.  This window
  609.      displays the most concise information about GNU Info available.
  610. `h' (`get-info-help-node')
  611.      Try hard to visit the node `(info)Help'.  The Info file
  612.      `info.texi' distributed with GNU Info contains this node.  Of
  613.      course, the file must first be processed with `makeinfo', and then
  614.      placed into the location of your Info directory.
  615. Here are the commands for creating a numeric argument:
  616. `C-u' (`universal-argument')
  617.      Start (or multiply by 4) the current numeric argument.  `C-u' is a
  618.      good way to give a small numeric argument to cursor movement or
  619.      scrolling commands; `C-u C-v' scrolls the screen 4 lines, while
  620.      `C-u C-u C-n' moves the cursor down 16 lines.
  621. `M-1' (`add-digit-to-numeric-arg')
  622. `M-2' ... `M-9'
  623.      Add the digit value of the invoking key to the current numeric
  624.      argument.  Once Info is reading a numeric argument, you may just
  625.      type the digits of the argument, without the Meta prefix.  For
  626.      example, you might give `C-l' a numeric argument of 32 by typing:
  627.           `C-u 3 2 C-l'
  628.      or
  629.           `M-3 2 C-l'
  630. `C-g' is used to abort the reading of a multi-character key sequence,
  631. to cancel lengthy operations (such as multi-file searches) and to
  632. cancel reading input in the echo area.
  633. `C-g' (`abort-key')
  634.      Cancel current operation.
  635. The `q' command of Info simply quits running Info.
  636. `q' (`quit')
  637.      Exit GNU Info.
  638. If the operating system tells GNU Info that the screen is 60 lines tall,
  639. and it is actually only 40 lines tall, here is a way to tell Info that
  640. the operating system is correct.
  641. `M-x set-screen-height'
  642.      Read a height value in the echo area and set the height of the
  643.      displayed screen to that value.
  644. Finally, Info provides a convenient way to display footnotes which might
  645. be associated with the current node that you are viewing:
  646. `ESC C-f' (`show-footnotes')
  647.      Show the footnotes (if any) associated with the current node in
  648.      another window.  You can have Info automatically display the
  649.      footnotes associated with a node when the node is selected by
  650.      setting the variable `automatic-footnotes'.  *Note
  651.      `automatic-footnotes': Variables.
  652. File: info-stnd.info,  Node: Variables,  Next: GNU Info Global Index,  Prev: Miscellaneous Commands,  Up: Top
  653. Manipulating Variables
  654. **********************
  655. GNU Info contains several "variables" whose values are looked at by
  656. various Info commands.  You can change the values of these variables,
  657. and thus change the behavior of Info to more closely match your
  658. environment and Info file reading manner.
  659. `M-x set-variable'
  660.      Read the name of a variable, and the value for it, in the echo
  661.      area and then set the variable to that value.  Completion is
  662.      available when reading the variable name; often, completion is
  663.      available when reading the value to give to the variable, but that
  664.      depends on the variable itself.  If a variable does *not* supply
  665.      multiple choices to complete over, it expects a numeric value.
  666. `M-x describe-variable'
  667.      Read the name of a variable in the echo area and then display a
  668.      brief description of what the variable affects.
  669. Here is a list of the variables that you can set in Info.
  670. `automatic-footnotes'
  671.      When set to `On', footnotes appear and disappear automatically.
  672.      This variable is `On' by default.  When a node is selected, a
  673.      window containing the footnotes which appear in that node is
  674.      created, and the footnotes are displayed within the new window.
  675.      The window that Info creates to contain the footnotes is called
  676.      `*Footnotes*'.  If a node is selected which contains no footnotes,
  677.      and a `*Footnotes*' window is on the screen, the `*Footnotes*'
  678.      window is deleted.  Footnote windows created in this fashion are
  679.      not automatically tiled so that they can use as little of the
  680.      display as is possible.
  681. `automatic-tiling'
  682.      When set to `On', creating or deleting a window resizes other
  683.      windows.  This variable is `Off' by default.  Normally, typing
  684.      `C-x 2' divides the current window into two equal parts.  When
  685.      `automatic-tiling' is set to `On', all of the windows are resized
  686.      automatically, keeping an equal number of lines visible in each
  687.      window.  There are exceptions to the automatic tiling;
  688.      specifically, the windows `*Completions*' and `*Footnotes*' are
  689.      *not* resized through automatic tiling; they remain their original
  690.      size.
  691. `visible-bell'
  692.      When set to `On', GNU Info attempts to flash the screen instead of
  693.      ringing the bell.  This variable is `Off' by default.  Of course,
  694.      Info can only flash the screen if the terminal allows it; in the
  695.      case that the terminal does not allow it, the setting of this
  696.      variable has no effect.  However, you can make Info perform
  697.      quietly by setting the `errors-ring-bell' variable to `Off'.
  698. `errors-ring-bell'
  699.      When set to `On', errors cause the bell to ring.  The default
  700.      setting of this variable is `On'.
  701. `gc-compressed-files'
  702.      When set to `On', Info garbage collects files which had to be
  703.      uncompressed.  The default value of this variable is `Off'.
  704.      Whenever a node is visited in Info, the Info file containing that
  705.      node is read into core, and Info reads information about the tags
  706.      and nodes contained in that file.  Once the tags information is
  707.      read by Info, it is never forgotten.  However, the actual text of
  708.      the nodes does not need to remain in core unless a particular Info
  709.      window needs it.  For non-compressed files, the text of the nodes
  710.      does not remain in core when it is no longer in use.  But
  711.      de-compressing a file can be a time consuming operation, and so
  712.      Info tries hard not to do it twice.  `gc-compressed-files' tells
  713.      Info it is okay to garbage collect the text of the nodes of a file
  714.      which was compressed on disk.
  715. `show-index-match'
  716.      When set to `On', the portion of the matched search string is
  717.      highlighted in the message which explains where the matched search
  718.      string was found.  The default value of this variable is `On'.
  719.      When Info displays the location where an index match was found,
  720.      (*note `next-index-match': Searching Commands.), the portion of the
  721.      string that you had typed is highlighted by displaying it in the
  722.      inverse case from its surrounding characters.
  723. `scroll-behavior'
  724.      Control what happens when forward scrolling is requested at the
  725.      end of a node, or when backward scrolling is requested at the
  726.      beginning of a node.  The default value for this variable is
  727.      `Continuous'.  There are three possible values for this variable:
  728.     `Continuous'
  729.           Try to get the first item in this node's menu, or failing
  730.           that, the `Next' node, or failing that, the `Next' of the
  731.           `Up'.  This behavior is identical to using the `]'
  732.           (`global-next-node') and `[' (`global-prev-node') commands.
  733.     `Next Only'
  734.           Only try to get the `Next' node.
  735.     `Page Only'
  736.           Simply give up, changing nothing.  If `scroll-behavior' is
  737.           `Page Only', no scrolling command can change the node that is
  738.           being viewed.
  739. `scroll-step'
  740.      The number of lines to scroll when the cursor moves out of the
  741.      window.  Scrolling happens automatically if the cursor has moved
  742.      out of the visible portion of the node text when it is time to
  743.      display.  Usually the scrolling is done so as to put the cursor on
  744.      the center line of the current window.  However, if the variable
  745.      `scroll-step' has a nonzero value, Info attempts to scroll the
  746.      node text by that many lines; if that is enough to bring the
  747.      cursor back into the window, that is what is done.  The default
  748.      value of this variable is 0, thus placing the cursor (and the text
  749.      it is attached to) in the center of the window.  Setting this
  750.      variable to 1 causes a kind of "smooth scrolling" which some
  751.      people prefer.
  752. `ISO-Latin'
  753.      When set to `On', Info accepts and displays ISO Latin characters.
  754.      By default, Info assumes an ASCII character set.  `ISO-Latin' tells
  755.      Info that it is running in an environment where the European
  756.      standard character set is in use, and allows you to input such
  757.      characters to Info, as well as display them.
  758. File: info-stnd.info,  Node: GNU Info Global Index,  Prev: Variables,  Up: Top
  759. Global Index
  760. ************
  761. * Menu:
  762. * ,:                                    Searching Commands.
  763. * 0, in Info windows:                   Selecting Xrefs.
  764. * 1 ... 9, in Info windows:             Selecting Xrefs.
  765. * <:                                    Node Commands.
  766. * >:                                    Node Commands.
  767. * ?, in Info windows:                   Miscellaneous Commands.
  768. * ?, in the echo area:                  The Echo Area.
  769. * -subnodes, command line option:       Options.
  770. * [:                                    Node Commands.
  771. * ]:                                    Node Commands.
  772. * abort-key:                            Miscellaneous Commands.
  773. * add-digit-to-numeric-arg:             Miscellaneous Commands.
  774. * arguments, command line:              Options.
  775. * automatic-footnotes:                  Variables.
  776. * automatic-tiling:                     Variables.
  777. * b, in Info windows:                   Cursor Commands.
  778. * backward-char:                        Cursor Commands.
  779. * backward-word:                        Cursor Commands.
  780. * beginning-of-line:                    Cursor Commands.
  781. * beginning-of-node:                    Cursor Commands.
  782. * C-a, in Info windows:                 Cursor Commands.
  783. * C-a, in the echo area:                The Echo Area.
  784. * C-b, in Info windows:                 Cursor Commands.
  785. * C-b, in the echo area:                The Echo Area.
  786. * C-d, in the echo area:                The Echo Area.
  787. * C-e, in Info windows:                 Cursor Commands.
  788. * C-e, in the echo area:                The Echo Area.
  789. * C-f, in Info windows:                 Cursor Commands.
  790. * C-f, in the echo area:                The Echo Area.
  791. * C-g, in Info windows:                 Miscellaneous Commands.
  792. * C-g, in the echo area:                The Echo Area.
  793. * C-h:                                  Miscellaneous Commands.
  794. * C-k, in the echo area:                The Echo Area.
  795. * C-l:                                  Scrolling Commands.
  796. * C-n:                                  Cursor Commands.
  797. * C-p:                                  Cursor Commands.
  798. * C-q, in the echo area:                The Echo Area.
  799. * C-r:                                  Searching Commands.
  800. * C-s:                                  Searching Commands.
  801. * C-t, in the echo area:                The Echo Area.
  802. * C-u:                                  Miscellaneous Commands.
  803. * C-v:                                  Scrolling Commands.
  804. * C-w:                                  Scrolling Commands.
  805. * C-x 0:                                Basic Windows.
  806. * C-x 1:                                Basic Windows.
  807. * C-x 2:                                Basic Windows.
  808. * C-x ^:                                Basic Windows.
  809. * C-x b:                                Node Commands.
  810. * C-x C-b:                              Node Commands.
  811. * C-x C-f:                              Node Commands.
  812. * C-x DEL, in the echo area:            The Echo Area.
  813. * C-x k:                                Node Commands.
  814. * C-x o:                                Basic Windows.
  815. * C-x t:                                Basic Windows.
  816. * C-y, in the echo area:                The Echo Area.
  817. * cancelling the current operation:     Miscellaneous Commands.
  818. * cancelling typeahead:                 Miscellaneous Commands.
  819. * command line options:                 Options.
  820. * commands, describing:                 Miscellaneous Commands.
  821. * cursor, moving:                       Cursor Commands.
  822. * d:                                    Node Commands.
  823. * DEL, in Info windows:                 Scrolling Commands.
  824. * DEL, in the echo area:                The Echo Area.
  825. * delete-window:                        Basic Windows.
  826. * describe-command:                     Miscellaneous Commands.
  827. * describe-key:                         Miscellaneous Commands.
  828. * describe-variable:                    Variables.
  829. * dir-node:                             Node Commands.
  830. * directory path:                       Options.
  831. * echo area:                            The Echo Area.
  832. * echo-area-abort:                      The Echo Area.
  833. * echo-area-backward:                   The Echo Area.
  834. * echo-area-backward-kill-line:         The Echo Area.
  835. * echo-area-backward-kill-word:         The Echo Area.
  836. * echo-area-backward-word:              The Echo Area.
  837. * echo-area-beg-of-line:                The Echo Area.
  838. * echo-area-complete:                   The Echo Area.
  839. * echo-area-delete:                     The Echo Area.
  840. * echo-area-end-of-line:                The Echo Area.
  841. * echo-area-forward:                    The Echo Area.
  842. * echo-area-forward-word:               The Echo Area.
  843. * echo-area-insert:                     The Echo Area.
  844. * echo-area-kill-line:                  The Echo Area.
  845. * echo-area-kill-word:                  The Echo Area.
  846. * echo-area-newline:                    The Echo Area.
  847. * echo-area-possible-completions:       The Echo Area.
  848. * echo-area-quoted-insert:              The Echo Area.
  849. * echo-area-rubout:                     The Echo Area.
  850. * echo-area-scroll-completions-window:  The Echo Area.
  851. * echo-area-tab-insert:                 The Echo Area.
  852. * echo-area-transpose-chars:            The Echo Area.
  853. * echo-area-yank:                       The Echo Area.
  854. * echo-area-yank-pop:                   The Echo Area.
  855. * end-of-line:                          Cursor Commands.
  856. * end-of-node:                          Cursor Commands.
  857. * errors-ring-bell:                     Variables.
  858. * ESC C-f:                              Miscellaneous Commands.
  859. * ESC C-v, in Info windows:             Basic Windows.
  860. * ESC C-v, in the echo area:            The Echo Area.
  861. * f:                                    Selecting Xrefs.
  862. * file, outputting to:                  Options.
  863. * find-menu:                            Selecting Xrefs.
  864. * first-node:                           Node Commands.
  865. * footnotes, displaying:                Miscellaneous Commands.
  866. * forward-char:                         Cursor Commands.
  867. * forward-word:                         Cursor Commands.
  868. * functions, describing:                Miscellaneous Commands.
  869. * g:                                    Node Commands.
  870. * gc-compressed-files:                  Variables.
  871. * get-help-window:                      Miscellaneous Commands.
  872. * get-info-help-node:                   Miscellaneous Commands.
  873. * global-next-node:                     Node Commands.
  874. * global-prev-node:                     Node Commands.
  875. * goto-node:                            Node Commands.
  876. * grow-window:                          Basic Windows.
  877. * h:                                    Miscellaneous Commands.
  878. * history-node:                         Node Commands.
  879. * i:                                    Searching Commands.
  880. * index-search:                         Searching Commands.
  881. * Info file, selecting:                 Options.
  882. * INFO_PRINT_COMMAND, environment variable: Printing Nodes.
  883. * isearch-backward:                     Searching Commands.
  884. * isearch-forward:                      Searching Commands.
  885. * ISO Latin characters:                 Variables.
  886. * ISO-Latin:                            Variables.
  887. * keep-one-window:                      Basic Windows.
  888. * keys, describing:                     Miscellaneous Commands.
  889. * kill-node:                            Node Commands.
  890. * l:                                    Node Commands.
  891. * last-menu-item:                       Selecting Xrefs.
  892. * last-node:                            Node Commands.
  893. * list-visited-nodes:                   Node Commands.
  894. * m:                                    Selecting Xrefs.
  895. * M-1 ... M-9:                          Miscellaneous Commands.
  896. * M-<:                                  Cursor Commands.
  897. * M->:                                  Cursor Commands.
  898. * M-b, in Info windows:                 Cursor Commands.
  899. * M-b, in the echo area:                The Echo Area.
  900. * M-d, in the echo area:                The Echo Area.
  901. * M-DEL, in the echo area:              The Echo Area.
  902. * M-f, in Info windows:                 Cursor Commands.
  903. * M-f, in the echo area:                The Echo Area.
  904. * M-r:                                  Cursor Commands.
  905. * M-TAB, in Info windows:               Selecting Xrefs.
  906. * M-TAB, in the echo area:              The Echo Area.
  907. * M-v:                                  Scrolling Commands.
  908. * M-y, in the echo area:                The Echo Area.
  909. * menu, following:                      Options.
  910. * menu-digit:                           Selecting Xrefs.
  911. * menu-item:                            Selecting Xrefs.
  912. * move-to-next-xref:                    Selecting Xrefs.
  913. * move-to-prev-xref:                    Selecting Xrefs.
  914. * move-to-window-line:                  Cursor Commands.
  915. * n:                                    Node Commands.
  916. * next-index-match:                     Searching Commands.
  917. * next-line:                            Cursor Commands.
  918. * next-node:                            Node Commands.
  919. * next-window:                          Basic Windows.
  920. * node, selecting:                      Options.
  921. * nodes, selection of:                  Node Commands.
  922. * numeric arguments:                    Miscellaneous Commands.
  923. * outputting to a file:                 Options.
  924. * p:                                    Node Commands.
  925. * prev-line:                            Cursor Commands.
  926. * prev-node:                            Node Commands.
  927. * prev-window:                          Basic Windows.
  928. * print-node:                           Printing Nodes.
  929. * printing:                             Printing Nodes.
  930. * printing characters, in the echo area: The Echo Area.
  931. * q:                                    Miscellaneous Commands.
  932. * quit:                                 Miscellaneous Commands.
  933. * quitting:                             Miscellaneous Commands.
  934. * r:                                    Selecting Xrefs.
  935. * redraw-display:                       Scrolling Commands.
  936. * RET, in Info windows:                 Selecting Xrefs.
  937. * RET, in the echo area:                The Echo Area.
  938. * s:                                    Searching Commands.
  939. * screen, changing the height of:       Miscellaneous Commands.
  940. * scroll-backward:                      Scrolling Commands.
  941. * scroll-behavior:                      Variables.
  942. * scroll-forward:                       Scrolling Commands.
  943. * scroll-other-window:                  Basic Windows.
  944. * scroll-step:                          Variables.
  945. * scrolling:                            Scrolling Commands.
  946. * scrolling through node structure:     Scrolling Commands.
  947. * search:                               Searching Commands.
  948. * searching:                            Searching Commands.
  949. * select-reference-this-line:           Selecting Xrefs.
  950. * select-visited-node:                  Node Commands.
  951. * set-screen-height:                    Miscellaneous Commands.
  952. * set-variable:                         Variables.
  953. * show-footnotes:                       Miscellaneous Commands.
  954. * show-index-match:                     Variables.
  955. * SPC, in Info windows:                 Scrolling Commands.
  956. * SPC, in the echo area:                The Echo Area.
  957. * split-window:                         Basic Windows.
  958. * t:                                    Node Commands.
  959. * TAB, in Info windows:                 Selecting Xrefs.
  960. * TAB, in the echo area:                The Echo Area.
  961. * tile-windows:                         Basic Windows.
  962. * tiling:                               Basic Windows.
  963. * toggle-wrap:                          Scrolling Commands.
  964. * top-node:                             Node Commands.
  965. * u:                                    Node Commands.
  966. * universal-argument:                   Miscellaneous Commands.
  967. * up-node:                              Node Commands.
  968. * variables, describing:                Variables.
  969. * variables, setting:                   Variables.
  970. * version information:                  Options.
  971. * view-file:                            Node Commands.
  972. * visible-bell:                         Variables.
  973. * where-is:                             Miscellaneous Commands.
  974. * windows, creating:                    Basic Windows.
  975. * windows, deleting:                    Basic Windows.
  976. * windows, manipulating:                Window Commands.
  977. * windows, selecting:                   Basic Windows.
  978. * xref-item:                            Selecting Xrefs.
  979. Tag Table:
  980. Node: Top
  981. Node: What is Info
  982. Node: Options
  983. Node: Cursor Commands
  984. Node: Scrolling Commands
  985. Node: Node Commands
  986. 11458
  987. Node: Searching Commands
  988. 15421
  989. Node: Xref Commands
  990. 17009
  991. Node: Parts of an Xref
  992. 17624
  993. Node: Selecting Xrefs
  994. 19569
  995. Node: Window Commands
  996. 21156
  997. Node: The Mode Line
  998. 22091
  999. Node: Basic Windows
  1000. 23730
  1001. Node: The Echo Area
  1002. 26232
  1003. Node: Printing Nodes
  1004. 30389
  1005. Node: Miscellaneous Commands
  1006. 31032
  1007. Node: Variables
  1008. 34203
  1009. Node: GNU Info Global Index
  1010. 40373
  1011. End Tag Table
  1012.