Mercurial > emacs
changeset 107671:71b254d49a0c
* misc.texi (Navigation): Document doc-view-continuous.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Thu, 25 Mar 2010 16:15:52 -0400 |
parents | 27d7bc8db6b7 |
children | abfd9eb36f84 |
files | doc/emacs/ChangeLog doc/emacs/misc.texi etc/NEWS |
diffstat | 3 files changed, 18 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/emacs/ChangeLog Thu Mar 25 01:53:30 2010 -0400 +++ b/doc/emacs/ChangeLog Thu Mar 25 16:15:52 2010 -0400 @@ -1,3 +1,7 @@ +2010-03-25 Chong Yidong <cyd@stupidchicken.com> + + * misc.texi (Navigation): Document doc-view-continuous. + 2010-03-24 Glenn Morris <rgm@gnu.org> * ack.texi (Acknowledgments): @@ -30,7 +34,6 @@ * xresources.texi (Table of Resources): * mule.texi (Defining Fontsets, Charsets): Update xrefs. ->>>>>>> MERGE-SOURCE 2010-03-06 Chong Yidong <cyd@stupidchicken.com> * custom.texi (Init Examples): Add xref to Locals.
--- a/doc/emacs/misc.texi Thu Mar 25 01:53:30 2010 -0400 +++ b/doc/emacs/misc.texi Thu Mar 25 16:15:52 2010 -0400 @@ -84,11 +84,20 @@ Emacs movement keys: @kbd{C-p}, @kbd{C-n}, @kbd{C-b}, @kbd{C-f}, and the arrow keys. +@vindex doc-view-continuous + By default, the line-motion keys @kbd{C-p} and @kbd{C-n} stop +scrolling at the beginning and end of the current page, respectively. +However, if you change the variable @code{doc-view-continuous} to a +non-@code{nil} value, then @kbd{C-p} displays the previous page if you +are already at the beginning of the current page, and @kbd{C-n} +displays the next page if you are at the end of the current page. + @findex doc-view-next-page @findex doc-view-previous-page - To display the next page, type @kbd{n}, @key{next} or @kbd{C-x ]} -(@code{doc-view-next-page}). To display the previous page, type -@kbd{p}, @key{prior} or @kbd{C-x [} (@code{doc-view-previous-page}). + You can also display the next page by typing @kbd{n}, @key{next} or +@kbd{C-x ]} (@code{doc-view-next-page}). To display the previous +page, type @kbd{p}, @key{prior} or @kbd{C-x [} +(@code{doc-view-previous-page}). @findex doc-view-scroll-up-or-next-page @findex doc-view-scroll-down-or-previous-page
--- a/etc/NEWS Thu Mar 25 01:53:30 2010 -0400 +++ b/etc/NEWS Thu Mar 25 16:15:52 2010 -0400 @@ -148,7 +148,7 @@ +++ *** The new completion-style `initials' is available. For instance, this can complete M-x lch to list-command-history. - +--- *** The new variable `completions-format' determines how completions are displayed in the *Completions* buffer. If you set it to `vertical', completions are sorted vertically in columns. @@ -227,7 +227,7 @@ Dired buffers to be reverted automatically on revisiting them. ** DocView - ++++ *** When `doc-view-continuous' is non-nil, scrolling a line on the page edge advances to the next/previous page.