Function: image-dired-tag-thumbnail-remove

image-dired-tag-thumbnail-remove is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-tag-thumbnail-remove)

Documentation

Remove tag from current or marked thumbnails.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-tag-thumbnail-remove ()
  "Remove tag from current or marked thumbnails."
  (interactive nil image-dired-thumbnail-mode)
  (let ((tag (completing-read "Tag to remove: " image-dired-tag-history
                              nil nil nil 'image-dired-tag-history)))
    (image-dired--with-marked
     (image-dired-remove-tag (image-dired-original-file-name) tag)
     (image-dired-update-property
      'tags (image-dired-list-tags (image-dired-original-file-name))))))