diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-14 22:15:09 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-14 22:15:09 +0100 |
commit | 740a937e41497baeb57d73a89db113bcdd7644ca (patch) | |
tree | 46d5dde00143ad37668d68aab582cd5066f760a1 /elisp/geiser-repl.el | |
parent | 11a64e7405ade65d48c28c578dfb18d15f9499d1 (diff) | |
download | geiser-740a937e41497baeb57d73a89db113bcdd7644ca.tar.gz geiser-740a937e41497baeb57d73a89db113bcdd7644ca.tar.bz2 |
Autodoc: try symbol at point first. Some cleanups.
Diffstat (limited to 'elisp/geiser-repl.el')
-rw-r--r-- | elisp/geiser-repl.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 671c798..508525a 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -29,32 +29,35 @@ (require 'geiser-edit) (require 'geiser-eval) (require 'geiser-connection) +(require 'geiser-custom) (require 'geiser-base) + (require 'comint) ;;; Customization: (defgroup geiser-repl nil - "Interacting with a Guile process inside Emacs." + "Interacting with the Geiser REPL." :group 'geiser) (defcustom geiser-repl-guile-binary (cond ((eq system-type 'windows-nt) "guile.exe") ((eq system-type 'darwin) "guile") (t "guile")) - "Name to use to call the guile executable when starting a REPL." + "Name to use to call the Guile executable when starting a REPL." :type 'string :group 'geiser-repl) (defcustom geiser-repl-use-other-window t - "Use a window other than the current buffer's when switching to -the Geiser REPL buffer." + "Whether to Use a window other than the current buffer's when +switching to the Geiser REPL buffer." :type 'boolean :group 'geiser-repl) (defcustom geiser-repl-window-allow-split t - "Allow window splitting when switching to the Geiser REPL buffer." + "Whether to allow window splitting when switching to the Geiser +REPL buffer." :type 'boolean :group 'geiser-repl) |