Function: idlwave-shell-complete-filename
idlwave-shell-complete-filename is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-complete-filename)
Documentation
Complete a file name at point if after a file name.
We assume that we are after a file name when completing one of the args of an executive .run, .rnew or .compile.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-complete-filename ()
"Complete a file name at point if after a file name.
We assume that we are after a file name when completing one of the
args of an executive .run, .rnew or .compile."
;; CWD might have changed, resync, to set default directory
(idlwave-shell-resync-dirs)
(let ((comint-file-name-chars idlwave-shell-file-name-chars))
(comint-dynamic-complete-filename)))