Function: expand-jump-to-next-slot
expand-jump-to-next-slot is an autoloaded, interactive and
byte-compiled function defined in expand.el.gz.
Signature
(expand-jump-to-next-slot)
Documentation
Move the cursor to the next 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-next-slot ()
"Move the cursor to the next 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 (length expand-pos))
(setq expand-index 0))
(goto-char (aref expand-pos expand-index))
(run-hooks 'expand-jump-hook))))