Function: picture-motion

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

Signature

(picture-motion ARG)

Documentation

Move point in direction of current picture motion in Picture mode.

With ARG do it that many times. Useful for delineating rectangles in conjunction with diagonal picture motion. Use "\\[command-apropos] picture-movement" to see commands which control motion.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/picture.el.gz
(defun picture-motion (arg)
  "Move point in direction of current picture motion in Picture mode.
With ARG do it that many times.  Useful for delineating rectangles in
conjunction with diagonal picture motion.
Use \"\\[command-apropos] picture-movement\" to see commands which control motion."
  (interactive "^p")
  (picture-move-down (* arg picture-vertical-step))
  (picture-forward-column (* arg picture-horizontal-step)))