Function: 5x5-down
5x5-down is an interactive and byte-compiled function defined in
5x5.el.gz.
Signature
(5x5-down)
Documentation
Move down.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-down ()
"Move down."
(interactive nil 5x5-mode)
(unless (= 5x5-y-pos (1- 5x5-grid-size))
(cl-incf 5x5-y-pos)
(5x5-position-cursor)))