Function: vi-kill-char

vi-kill-char is an interactive and byte-compiled function defined in vi.el.gz.

Signature

(vi-kill-char COUNT)

Documentation

Kill COUNT chars from current point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-kill-char (count)
  "Kill COUNT chars from current point."
  (interactive "*p")
  (delete-char count t)			; save in kill ring
  (vi-set-last-change-command 'delete-char count t))