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 | 1d8477f7cd318b5692e5650901ac5ac9af6f19c6 (patch) | |
tree | 240e634b76df74767c5ca641e59413856821fd30 /elisp/geiser-repl.el | |
parent | 5ee2ae3ccd73f5dfae68db011c581f918eea8751 (diff) | |
download | geiser-guile-1d8477f7cd318b5692e5650901ac5ac9af6f19c6.tar.gz geiser-guile-1d8477f7cd318b5692e5650901ac5ac9af6f19c6.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) |