Function: edt-change-direction
edt-change-direction is an interactive and byte-compiled function
defined in edt.el.gz.
Signature
(edt-change-direction)
Documentation
Toggle movement direction.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;;
;;;; ENHANCEMENTS AND ADDITIONS FOR EDT KEYPAD MODE
;;;;
;;;
;; Several enhancements and additions to EDT keypad mode commands are
;; provided here. Some of these have been motivated by similar
;; TPU/EVE and EVE-Plus commands. Others are new.
;;;
;;; CHANGE DIRECTION
;;;
(defun edt-change-direction ()
"Toggle movement direction."
(interactive)
(if (equal edt-direction-string edt-forward-string)
(edt-backup)
(edt-advance)))