1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-18 18:05:07 +00:00

Document image-{next, previous}-file, plus some minor tweak.

This commit is contained in:
Xue Fuqiao 2013-12-22 13:20:03 +08:00
parent 6cddebc11b
commit 8d3c54a0b2
3 changed files with 19 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2013-12-22 Xue Fuqiao <xfq.free@gmail.com>
* files.texi (File Conveniences): Document `image-next-file' and `image-previous-file'.
* display.texi (Optional Mode Line): Fix an index.
* regs.texi (File Registers): Document `kmacro-to-register'.

View File

@ -1944,6 +1944,8 @@ point. Partial Completion mode offers other features extending
@findex image-mode
@findex image-toggle-display
@findex image-toggle-animation
@findex image-next-file
@findex image-previous-file
@cindex images, viewing
@cindex image animation
@cindex animated images
@ -1955,7 +1957,11 @@ Displaying the file as an image works only if Emacs is compiled with
support for displaying such images. If the displayed image is wider
or taller than the frame, the usual point motion keys (@kbd{C-f},
@kbd{C-p}, and so forth) cause different parts of the image to be
displayed. If the image can be animated, the command @kbd{RET}
displayed. You can press @kbd{n} (@code{image-next-file}) and @kbd{p}
(@code{image-previous-file}) to visit the next image file and the
previous image file in the same directory, respectively.
If the image can be animated, the command @kbd{RET}
(@code{image-toggle-animation}) starts or stops the animation.
Animation plays once, unless the option @code{image-animate-loop} is
non-@code{nil}.

View File

@ -321,6 +321,7 @@ code run via JIT Lock.
** Calendar and Diary
---
*** New faces `calendar-weekday-header', `calendar-weekend-header',
and `calendar-month-header'.
@ -377,7 +378,7 @@ For example, this enables parsing of macros which open new namespaces.
** cl-lib
*** New macro cl-tagbody.
*** New macro `cl-tagbody'.
+++
*** letf is now just an alias for cl-letf.
@ -464,20 +465,28 @@ module.
*** New option `f90-smart-end-names'.
** Icomplete is a bit more like Ido.
*** key bindings to navigate through and select the completions.
*** The icomplete-separator is customizable, and its default has changed.
*** Removed icomplete-show-key-bindings.
*** Icomplete-mode by defaults applies to all forms of minibuffer completion.
(setq icomplete-with-completion-tables '(internal-complete-buffer))
will revert to the old behavior.
** Ido
*** Ido has a manual now.
*** `ido-use-virtual-buffers' takes a new value 'auto.
*** `ido-decorations' has been slightly extended to give a bit more control.
** Image mode
+++
*** New commands `n' (`image-next-file') and `p' (`image-previous-file')
visit the next image file and the previous image file in the same
directory, respectively.