Function: picture-movement-ne

picture-movement-ne is an interactive and byte-compiled function defined in picture.el.gz.

Signature

(picture-movement-ne &optional ARG)

Documentation

Move up and right after self-inserting character in Picture mode.

With prefix argument ARG, move up and two-column right.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-movement-ne (&optional arg)
  "Move up and right after self-inserting character in Picture mode.
With prefix argument ARG, move up and two-column right."
  (interactive "P")
  (picture-set-motion -1 (if arg 2 1)))