Function: image-dired-delete-char

image-dired-delete-char is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-delete-char)

Documentation

Remove current thumbnail from thumbnail buffer and line up.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
;;; Thumbnail layout and display

(defun image-dired-delete-char ()
  "Remove current thumbnail from thumbnail buffer and line up."
  (interactive nil image-dired-thumbnail-mode)
  (let ((inhibit-read-only t))
    (delete-char 1)
    (cl-decf image-dired--number-of-thumbnails))
  (let ((pos (point)))
    (image-dired--line-up-with-method)
    (goto-char pos)
    (image-dired--update-header-line)))