Function: PC-complete-space

PC-complete-space is an interactive and byte-compiled function defined in complete.el.gz.

Signature

(PC-complete-space)

Documentation

Like minibuffer-complete-word, but allows "b--di"-style abbreviations.

See PC-complete for details. This is suitable for binding to other keys which should act just like SPC.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/complete.el.gz
(defun PC-complete-space ()
  "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations.
See `PC-complete' for details.
This is suitable for binding to other keys which should act just like SPC."
  (interactive)
  (if (eq (PC-was-meta-key) PC-meta-flag)
      (minibuffer-complete-word)
    (insert " ")
    (if (eobp)
	(PC-do-completion 'word))))