Function: expand-jump-to-previous-slot
expand-jump-to-previous-slot is an autoloaded, interactive and
byte-compiled function defined in expand.el.gz.
Signature
(expand-jump-to-previous-slot)
Documentation
Move the cursor to the previous slot in the last abbrev expansion.
This is used only in conjunction with expand-add-abbrevs.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/expand.el.gz
;;;###autoload
(defun expand-jump-to-previous-slot ()
"Move the cursor to the previous slot in the last abbrev expansion.
This is used only in conjunction with `expand-add-abbrevs'."
(interactive)
(if expand-pos
(progn
(setq expand-index (1- expand-index))
(if (< expand-index 0)
(setq expand-index (1- (length expand-pos))))
(goto-char (aref expand-pos expand-index))
(run-hooks 'expand-jump-hook))))