summaryrefslogtreecommitdiff
path: root/README.elpa
blob: df8c4143b65a40987ae86c3242831c227bdf9298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Geiser is a generic Emacs/Scheme interaction mode, featuring an
enhanced REPL and a set of minor modes improving Emacs' basic scheme
major mode.

Geiser supports Racket, Guile, Chicken, Chibi, MIT-Scheme and Chez.

Main functionalities:

    - Evaluation of forms in the namespace of the current module.

    - Macro expansion.

    - File/module loading.

    - Namespace-aware identifier completion (including local bindings,
      names visible in the current module, and module names).

    - Autodoc: the echo area shows information about the signature of
      the procedure/macro around point automatically.

    - Jump to definition of identifier at point.

    - Direct access to documentation, including docstrings (when the
      implementation provides them) and user manuals.

    - Listings of identifiers exported by a given module (Guile).

    - Listings of callers/callees of procedures (Guile).

    - Rudimentary support for debugging (list of
      evaluation/compilation error in an Emacs' compilation-mode
      buffer).

    - Support for inline images in schemes, such as Racket, that treat
      them as first order values.


Chicken Addendum:
    These steps are necessary to fully support Chicken Scheme, but are
    not required for any other scheme.

    - Install the necessary support eggs:
      $ chicken-install -s apropos chicken-doc

    - Update the Chicken documentation database.  For Chicken 4:
      $ cd `csi -p '(chicken-home)'`
      $ curl http://3e8.org/pub/chicken-doc/chicken-doc-repo.tgz | sudo tar zx

      or, for Chicken 5:
      $ chicken-install -s srfi-18 srfi-1
      $ cd `csi -R chicken.platform -p '(chicken-home)'`
      $ curl https://3e8.org/pub/chicken-doc/chicken-doc-repo-5.tgz | sudo tar zx


See http://www.nongnu.org/geiser/ for the full manual in HTML form, or
the the info manual installed by this package.

Author: http://jao.io