Function: picture-motion-reverse

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

Signature

(picture-motion-reverse ARG)

Documentation

Move point in direction opposite 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-reverse (arg)
  "Move point in direction opposite 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-motion (- arg)))