Function: eshell-complete-lisp-symbol
eshell-complete-lisp-symbol is an interactive and byte-compiled
function defined in em-cmpl.el.gz.
Signature
(eshell-complete-lisp-symbol)
Documentation
Try to complete the text around point as a Lisp symbol.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-cmpl.el.gz
;;; Functions:
(defun eshell-complete-lisp-symbol ()
"Try to complete the text around point as a Lisp symbol."
(interactive)
(let ((completion-at-point-functions '(elisp-completion-at-point)))
(completion-at-point)))