Function: completion--move-to-candidate-start

completion--move-to-candidate-start is a byte-compiled function defined in simple.el.gz.

Signature

(completion--move-to-candidate-start)

Documentation

If in a completion candidate, move point to its start.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun completion--move-to-candidate-start ()
  "If in a completion candidate, move point to its start."
  (when (and (get-text-property (point) 'mouse-face)
             (not (bobp))
             (get-text-property (1- (point)) 'mouse-face))
    (goto-char (previous-single-property-change (point) 'mouse-face))))