1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 22:50:59 -08:00

New command for unmarking all images in image-dired

* lisp/image-dired.el (image-dired-unmark-all-marks): Remove marks from
Dired buffer and update the view of the thumbnails (bug#50920).
This commit is contained in:
Peter Münster 2021-10-01 14:49:28 +02:00 committed by Lars Ingebrigtsen
parent 6c0824f711
commit a2a6c7abcb
2 changed files with 16 additions and 0 deletions

View file

@ -54,6 +54,13 @@ This change also affects 'cl-macrolet', 'cl-flet*' and
* Changes in Specialized Modes and Packages in Emacs 29.1
** image-dired
---
*** New command for the thumbnail buffer.
The new command 'image-dired-unmark-all-marks' has been added with a
binding in the menu.
* New Modes and Packages in Emacs 29.1

View file

@ -1433,6 +1433,14 @@ dired."
(interactive)
(image-dired-modify-mark-on-thumb-original-file 'toggle))
(defun image-dired-unmark-all-marks ()
"Remove all marks from all files.
Do this in the Dired buffer and update this thumbnail buffer."
(interactive)
(with-current-buffer (image-dired-associated-dired-buffer)
(dired-unmark-all-marks))
(image-dired-thumb-update-marks))
(defun image-dired-jump-original-dired-buffer ()
"Jump to the dired buffer associated with the current image file.
You probably want to use this together with
@ -1536,6 +1544,7 @@ You probably want to use this together with
["Quit" quit-window]
["Delete thumbnail from buffer" image-dired-delete-char]
["Delete marked images" image-dired-delete-marked]
["Unmark all marks" image-dired-unmark-all-marks]
["Remove tag from current or marked thumbnails"
image-dired-tag-thumbnail-remove]
["Tag current or marked thumbnails" image-dired-tag-thumbnail]