Function: idlwave-context-help
idlwave-context-help is an interactive and byte-compiled function
defined in idlwave.el.gz.
Signature
(idlwave-context-help &optional ARG)
Documentation
Display IDL Online Help on context.
If point is on a keyword, help for that keyword will be shown. If
point is on a routine name or in the argument list of a routine, help
for that routine will be displayed. Works for system routines and
keywords, it pulls up text help. For other routines and keywords,
visits the source file, finding help in the header (if
idlwave-help-source-try-header is non-nil) or the routine definition
itself.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-context-help (&optional arg)
"Display IDL Online Help on context.
If point is on a keyword, help for that keyword will be shown. If
point is on a routine name or in the argument list of a routine, help
for that routine will be displayed. Works for system routines and
keywords, it pulls up text help. For other routines and keywords,
visits the source file, finding help in the header (if
`idlwave-help-source-try-header' is non-nil) or the routine definition
itself."
(interactive "P")
(idlwave-do-context-help arg))