Function: PC-complete-word

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

Signature

(PC-complete-word)

Documentation

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

See PC-complete for details. This can be bound to other keys, like - and ., if you wish.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/complete.el.gz
(defun PC-complete-word ()
  "Like `minibuffer-complete-word', but allows \"b--di\"-style abbreviations.
See `PC-complete' for details.
This can be bound to other keys, like `-' and `.', if you wish."
  (interactive)
  (if (eq (PC-was-meta-key) PC-meta-flag)
      (if (eq last-command-event ? )
	  (minibuffer-complete-word)
	(self-insert-command 1))
    (self-insert-command 1)
    (if (eobp)
	(PC-do-completion 'word))))