Function: complete-symbol

complete-symbol is an interactive and byte-compiled function defined in bindings.el.gz.

Signature

(complete-symbol ARG)

Documentation

Perform completion on the text around point.

The completion method is determined by completion-at-point-functions.

With a prefix argument, this command does completion within the collection of symbols listed in the index of the manual for the language you are using.

Probably introduced at or before Emacs version 20.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defun complete-symbol (arg)
  "Perform completion on the text around point.
The completion method is determined by `completion-at-point-functions'.

With a prefix argument, this command does completion within
the collection of symbols listed in the index of the manual for the
language you are using."
  (interactive "P")
  (if arg (info-complete-symbol) (completion-at-point)))