| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
gauche.interactive - Utilities for interactive session
This module is automatically loaded when you run gosh
interactively.
pattern may be a symbol or a regexp object. If it is a symbol, the variables whose name contains the substring that matches the symbol's name are listed. If it is a regexp object, the variables whose name matches the regexp are listed.
Some examples:
;; List variables that contains "string" in their name (apropos 'string) ;; Search in srfi-14 module (apropos 'char 'srfi-14) |
INFOPATH is defined,
this function searches for the info file from the directories in it.
Otherwise, this function guesses info file location from the
gosh's library directory. If the info file can't be
found, an error is signalled. If the info file is found,
but symbol is not in its index, an error is signalled as well.
So this function doesn't work if you haven't installed info file.
If the current output port is a tty, the info page is displayed by
a paging software. If an environment variable PAGER is defined,
it is used as a paging software. Otherwise, this function looks for
less and more in this order from the directories in
PATH. If none of them is found, or the output port is not
a tty, this function just displays the page.
The first invocation of this function in a session takes some time to parse the info file.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |