Function: idlwave-help-assistant-help-with-topic
idlwave-help-assistant-help-with-topic is an interactive and
byte-compiled function defined in idlw-help.el.gz.
Signature
(idlwave-help-assistant-help-with-topic &optional TOPIC)
Documentation
Prompt for and provide help with TOPIC.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-help.el.gz
(defun idlwave-help-assistant-help-with-topic (&optional topic)
"Prompt for and provide help with TOPIC."
(interactive)
(let (list)
(unless topic
(idlwave-routines)
(setq list (append (mapcar (lambda (x)
(concat (nth 2 x) (car x)))
idlwave-system-routines)
(mapcar (lambda (x)
(concat "." (car x)))
idlwave-executive-commands-alist)
idlwave-system-class-info))
(setq topic
(idlwave-completing-read
"Help Topic: " list
nil nil nil
'idlwave-help-assistant-help-with-topic-history)))
(if (and topic (not (string= topic "")))
(idlwave-help-assistant-open-link (concat topic ".html")))))