Function: vc-dir-kill-line

vc-dir-kill-line is an interactive and byte-compiled function defined in vc-dir.el.gz.

Signature

(vc-dir-kill-line)

Documentation

Remove the current line from display.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-dir.el.gz
(defun vc-dir-kill-line ()
  "Remove the current line from display."
  (interactive)
  (let ((crt (ewoc-locate vc-ewoc))
        (inhibit-read-only t))
    (ewoc-delete vc-ewoc crt)))