Function: gomoku-move-nw
gomoku-move-nw is an interactive and byte-compiled function defined in
gomoku.el.gz.
Signature
(gomoku-move-nw)
Documentation
Move point North West on the Gomoku board.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-move-nw ()
"Move point North West on the Gomoku board."
(interactive nil gomoku-mode)
(gomoku-move-up)
(gomoku-move-left))