mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
Document outline-show-entry-and-parents in the Emacs manual
* doc/emacs/text.texi (Outline Visibility): Document the new 'outline-show-entry-and-parents' command and its 'C-c C-e' keybinding. (Foldout): Update the Foldout example to reference the new command (bug#79286).
This commit is contained in:
parent
0cef3ee64b
commit
b079716674
1 changed files with 8 additions and 8 deletions
|
|
@ -1197,8 +1197,8 @@ header line.
|
||||||
Make the current heading line's body invisible
|
Make the current heading line's body invisible
|
||||||
(@code{outline-hide-entry}).
|
(@code{outline-hide-entry}).
|
||||||
@item C-c C-e
|
@item C-c C-e
|
||||||
Make the current heading line's body visible
|
Reveal the current entry and its parent hierarchy
|
||||||
(@code{outline-show-entry}).
|
(@code{outline-show-entry-and-parents}).
|
||||||
@item C-c C-d
|
@item C-c C-d
|
||||||
Make everything under the current heading invisible, not including the
|
Make everything under the current heading invisible, not including the
|
||||||
heading itself (@code{outline-hide-subtree}).
|
heading itself (@code{outline-hide-subtree}).
|
||||||
|
|
@ -1235,14 +1235,14 @@ Show bodies of headings that match @var{regexp}
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
@findex outline-hide-entry
|
@findex outline-hide-entry
|
||||||
@findex outline-show-entry
|
@findex outline-show-entry-and-parents
|
||||||
@kindex C-c C-c @r{(Outline mode)}
|
@kindex C-c C-c @r{(Outline mode)}
|
||||||
@kindex C-c C-e @r{(Outline mode)}
|
@kindex C-c C-e @r{(Outline mode)}
|
||||||
The simplest of these commands are @kbd{C-c C-c}
|
The simplest of these commands are @kbd{C-c C-c}
|
||||||
(@code{outline-hide-entry}), which hides the body lines directly
|
(@code{outline-hide-entry}), which hides the body lines directly
|
||||||
following the current heading line, and @kbd{C-c C-e}
|
following the current heading line, and @kbd{C-c C-e}
|
||||||
(@code{outline-show-entry}), which reveals them. Subheadings and
|
(@code{outline-show-entry-and-parents}), which reveals the current entry,
|
||||||
their bodies are not affected.
|
all of its ancestor headings, and their immediate sibling headings.
|
||||||
|
|
||||||
@findex outline-hide-subtree
|
@findex outline-hide-subtree
|
||||||
@findex outline-show-subtree
|
@findex outline-show-subtree
|
||||||
|
|
@ -1372,9 +1372,9 @@ levels.
|
||||||
|
|
||||||
Consider an Outline mode buffer with all the text and subheadings under
|
Consider an Outline mode buffer with all the text and subheadings under
|
||||||
level-1 headings hidden. To look at what is hidden under one of these
|
level-1 headings hidden. To look at what is hidden under one of these
|
||||||
headings, you could use @kbd{C-c C-e} (@kbd{M-x outline-show-entry})
|
headings, you could use @kbd{C-c C-e} (@kbd{M-x outline-show-entry-and-parents})
|
||||||
to expose the body, or @kbd{C-c C-i} to expose the child (level-2)
|
to expose the body and its parent hierarchy, or @kbd{C-c C-i} to expose
|
||||||
headings.
|
the child (level-2) headings.
|
||||||
|
|
||||||
@kindex C-c C-z
|
@kindex C-c C-z
|
||||||
@findex foldout-zoom-subtree
|
@findex foldout-zoom-subtree
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue