Function: file-cache-complete

file-cache-complete is an interactive and byte-compiled function defined in filecache.el.gz.

Signature

(file-cache-complete)

Documentation

Complete the word at point, using the filecache.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/filecache.el.gz
(defun file-cache-complete  ()
  "Complete the word at point, using the filecache."
  (interactive)
  (let ((start
    (save-excursion
      (skip-syntax-backward "^\"")
           (point))))
    (completion-in-region start (point) file-cache-alist)))