diff options
| author | Eli Zaretskii | 2017-12-25 21:49:37 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-12-25 21:49:37 +0200 |
| commit | 13c59d0a8353a87f21b57ac699c9ff3543a0ee45 (patch) | |
| tree | 305e7236359b7d69b796340e0a2102fff852e915 /doc | |
| parent | 7850b7620e2bc6cb9ed43ea00f84a0ad04193fe3 (diff) | |
| download | emacs-13c59d0a8353a87f21b57ac699c9ff3543a0ee45.tar.gz emacs-13c59d0a8353a87f21b57ac699c9ff3543a0ee45.zip | |
More improvements for text.texi
* doc/emacs/text.texi (Outline Motion): Avoid unneeded
repetition. Suggested by Petteri Hintsanen <petterih@iki.fi> in
emacs-manual-bugs@gnu.org.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/text.texi | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/doc/emacs/text.texi b/doc/emacs/text.texi index 3561956791d..948abc3a960 100644 --- a/doc/emacs/text.texi +++ b/doc/emacs/text.texi | |||
| @@ -1045,42 +1045,36 @@ forward to heading lines. | |||
| 1045 | 1045 | ||
| 1046 | @table @kbd | 1046 | @table @kbd |
| 1047 | @item C-c C-n | 1047 | @item C-c C-n |
| 1048 | @findex outline-next-visible-heading | ||
| 1049 | @kindex C-c C-n @r{(Outline mode)} | ||
| 1048 | Move point to the next visible heading line | 1050 | Move point to the next visible heading line |
| 1049 | (@code{outline-next-visible-heading}). | 1051 | (@code{outline-next-visible-heading}). |
| 1050 | @item C-c C-p | 1052 | @item C-c C-p |
| 1053 | @findex outline-previous-visible-heading | ||
| 1054 | @kindex C-c C-p @r{(Outline mode)} | ||
| 1051 | Move point to the previous visible heading line | 1055 | Move point to the previous visible heading line |
| 1052 | (@code{outline-previous-visible-heading}). | 1056 | (@code{outline-previous-visible-heading}). |
| 1053 | @item C-c C-f | 1057 | @item C-c C-f |
| 1058 | @findex outline-forward-same-level | ||
| 1059 | @kindex C-c C-f @r{(Outline mode)} | ||
| 1054 | Move point to the next visible heading line at the same level | 1060 | Move point to the next visible heading line at the same level |
| 1055 | as the one point is on (@code{outline-forward-same-level}). | 1061 | as the one point is on (@code{outline-forward-same-level}). |
| 1056 | @item C-c C-b | 1062 | @item C-c C-b |
| 1063 | @findex outline-backward-same-level | ||
| 1064 | @kindex C-c C-b @r{(Outline mode)} | ||
| 1057 | Move point to the previous visible heading line at the same level | 1065 | Move point to the previous visible heading line at the same level |
| 1058 | (@code{outline-backward-same-level}). | 1066 | (@code{outline-backward-same-level}). |
| 1059 | @item C-c C-u | 1067 | @item C-c C-u |
| 1068 | @findex outline-up-heading | ||
| 1069 | @kindex C-c C-u @r{(Outline mode)} | ||
| 1060 | Move point up to a lower-level (more inclusive) visible heading line | 1070 | Move point up to a lower-level (more inclusive) visible heading line |
| 1061 | (@code{outline-up-heading}). | 1071 | (@code{outline-up-heading}). |
| 1062 | @end table | 1072 | @end table |
| 1063 | 1073 | ||
| 1064 | @findex outline-next-visible-heading | 1074 | All of the above commands accept numeric arguments as repeat counts. |
| 1065 | @findex outline-previous-visible-heading | 1075 | For example, @kbd{C-c C-f}, when given an argument, moves forward that |
| 1066 | @kindex C-c C-n @r{(Outline mode)} | 1076 | many visible heading lines on the same level, and @kbd{C-c C-u} with |
| 1067 | @kindex C-c C-p @r{(Outline mode)} | 1077 | an argument moves out of that many nested levels. |
| 1068 | @kbd{C-c C-n} (@code{outline-next-visible-heading}) moves down to | ||
| 1069 | the next heading line. @kbd{C-c C-p} | ||
| 1070 | (@code{outline-previous-visible-heading}) moves similarly backward. | ||
| 1071 | Both accept numeric arguments as repeat counts. | ||
| 1072 | |||
| 1073 | @findex outline-up-heading | ||
| 1074 | @findex outline-forward-same-level | ||
| 1075 | @findex outline-backward-same-level | ||
| 1076 | @kindex C-c C-f @r{(Outline mode)} | ||
| 1077 | @kindex C-c C-b @r{(Outline mode)} | ||
| 1078 | @kindex C-c C-u @r{(Outline mode)} | ||
| 1079 | @kbd{C-c C-f} (@code{outline-forward-same-level}) and @kbd{C-c C-b} | ||
| 1080 | (@code{outline-backward-same-level}) move from one heading line to | ||
| 1081 | another visible heading at the same depth in the outline. @kbd{C-c | ||
| 1082 | C-u} (@code{outline-up-heading}) moves backward to another heading | ||
| 1083 | that is less deeply nested. | ||
| 1084 | 1078 | ||
| 1085 | @node Outline Visibility | 1079 | @node Outline Visibility |
| 1086 | @subsection Outline Visibility Commands | 1080 | @subsection Outline Visibility Commands |