Function: vi-change-rest-of-line

vi-change-rest-of-line is an interactive and byte-compiled function defined in vi.el.gz.

Signature

(vi-change-rest-of-line ARG)

Documentation

Change the rest of (ARG) lines (= c$ in vi).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-change-rest-of-line (arg)
  "Change the rest of (ARG) lines (= c$ in vi)."
  (interactive "*P")
  (vi-goto-insert-state 1 (list 'kill-line arg) t))