Function: vi-open-below

vi-open-below is an interactive and byte-compiled function defined in vi.el.gz.

Signature

(vi-open-below ARG)

Documentation

open new line(s) and go into insert mode on the last line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-open-below (arg)
  "open new line(s) and go into insert mode on the last line."
  (interactive "*p")
  (vi-goto-insert-state 1
			(list (function (lambda (x)
					  (or (end-of-line)
					    (open-line x)
					    (forward-line x)))) arg)
			t))