diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README | 11 | ||||
-rw-r--r-- | elisp/geiser-compile.el | 2 |
3 files changed, 13 insertions, 1 deletions
@@ -1,2 +1,3 @@ /scheme/guile/geiser/emacs.go /scheme/guile/geiser/eval.go +/scheme/guile/geiser/introspection.go @@ -0,0 +1,11 @@ + +* Install + + - In your .emacs: + + (load-file "<path-to-geiser>/elisp/geiser.el") + (geiser-setup) + + - Check the geiser customization group for some options. In + particular, geiser-repl-guile-binary, which should point to a + guile-vm executable. diff --git a/elisp/geiser-compile.el b/elisp/geiser-compile.el index a7a7daf..5bac3c0 100644 --- a/elisp/geiser-compile.el +++ b/elisp/geiser-compile.el @@ -79,7 +79,7 @@ msg (geiser-eval--send/wait `(:gs ((:ge ,op) ,path)))))) -;;; User commands:: +;;; User commands: (defun geiser-compile-file (path) "Compile and load Scheme file." |