diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-01 19:53:48 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-01 19:53:48 +0200 |
commit | 98bbded2b37b7608573b1a9c596f5c215257b7ad (patch) | |
tree | 86ce7ebf95ac7b1553f53e27e3b1dd65cc7a93fd /doc | |
parent | 41f59e71e2fc60a10991b4e1457fa787e87ab2b3 (diff) | |
download | emacs-98bbded2b37b7608573b1a9c596f5c215257b7ad.tar.gz |
Add support for Dired file marking from image-mode
* doc/emacs/files.texi (File Conveniences): Document them.
* lisp/image-mode.el (image-mode--mark-file): New function.
(image-mode-unmark-file, image-mode-mark-file)
(image-mode-copy-file-name-as-kill): New commands and keystrokes.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/emacs/files.texi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index 0ff64d529c0..9fe1b564a82 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi @@ -2119,6 +2119,20 @@ 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. +@findex image-mode-mark-file +@findex image-mode-unmark-file +@findex image-mode-copy-file-name-as-kill + When looking through images, it's sometimes convenient to be able to +mark the files for later processing (for instance, if you want to +select a group of images to copy somewhere else). The @kbd{m} +(@code{image-mode-mark-file}) command will mark the current file in +any Dired buffer(s) that display the current file's directory. If no +such buffer is open, the directory is opened in a new buffer. To +unmark files, use the @kbd{u} (@code{image-mode-mark-file}) command. +Finally, if you just want to copy the current buffers file name to the +kill ring, you can use the @kbd{w} +(@code{image-mode-copy-file-name-as-kill}) command. + @findex image-toggle-animation @findex image-next-frame @findex image-previous-frame |