summaryrefslogtreecommitdiff
path: root/elisp/geiser-repl.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2009-09-11 22:01:14 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2009-09-11 22:01:14 +0200
commit3265bb3b50c1199586205fab0febfdf0b91c3c2b (patch)
treee4049cfc17e514428a198b00f69a4dfc5db81c5b /elisp/geiser-repl.el
parentd6ebefe0eb609c813adeba9075200cbc4f0d8947 (diff)
downloadgeiser-3265bb3b50c1199586205fab0febfdf0b91c3c2b.tar.gz
geiser-3265bb3b50c1199586205fab0febfdf0b91c3c2b.tar.bz2
Reload: we now remember user customizations and restore them during geiser-reload.
Diffstat (limited to 'elisp/geiser-repl.el')
-rw-r--r--elisp/geiser-repl.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el
index fe2f6a4..e8e4975 100644
--- a/elisp/geiser-repl.el
+++ b/elisp/geiser-repl.el
@@ -27,41 +27,41 @@
"Interacting with the Geiser REPL."
:group 'geiser)
-(defcustom geiser-repl-use-other-window t
+(geiser-custom--defcustom geiser-repl-use-other-window t
"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
+(geiser-custom--defcustom geiser-repl-window-allow-split t
"Whether to allow window splitting when switching to the Geiser
REPL buffer."
:type 'boolean
:group 'geiser-repl)
-(defcustom geiser-repl-history-filename (expand-file-name "~/.geiser_history")
+(geiser-custom--defcustom geiser-repl-history-filename (expand-file-name "~/.geiser_history")
"File where REPL input history is saved, so that it persists between sessions.
This is actually the base name: the concrete Scheme
implementation name gets appended to it."
:type 'filename
:group 'geiser-repl)
-(defcustom geiser-repl-history-size comint-input-ring-size
+(geiser-custom--defcustom geiser-repl-history-size comint-input-ring-size
"Maximum size of the saved REPL input history."
:type 'integer
:group 'geiser-repl)
-(defcustom geiser-repl-autodoc-p t
+(geiser-custom--defcustom geiser-repl-autodoc-p t
"Whether to enable `geiser-autodoc-mode' in the REPL by default."
:type 'boolean
:group 'geiser-repl)
-(defcustom geiser-repl-company-p t
+(geiser-custom--defcustom geiser-repl-company-p t
"Whether to use company-mode for completion, if available."
:group 'geiser-mode
:type 'boolean)
-(defcustom geiser-repl-read-only-prompt-p t
+(geiser-custom--defcustom geiser-repl-read-only-prompt-p t
"Whether the REPL's prompt should be read-only."
:type 'boolean
:group 'geiser-repl)