diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-06-14 04:35:48 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-06-14 04:35:48 +0200 |
commit | 8cbee770fd943323297de29f6ae11541a2b63a0b (patch) | |
tree | 107fe6c544c3c3dd3ec856fe2049197655170d81 /elisp/geiser-repl.el | |
parent | d92baad9f8e9f205ca1dc642e7f763ddbcfec43b (diff) | |
download | geiser-guile-8cbee770fd943323297de29f6ae11541a2b63a0b.tar.gz geiser-guile-8cbee770fd943323297de29f6ae11541a2b63a0b.tar.bz2 |
Nits.
Diffstat (limited to 'elisp/geiser-repl.el')
-rw-r--r-- | elisp/geiser-repl.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 6fc820a..e27d80f 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -389,27 +389,27 @@ module command as a string") geiser-completion--complete-module :enable (symbol-at-point)) ("Edit symbol" "\M-." geiser-edit--symbol-at-point :enable (symbol-at-point)) - line + -- ("Previous matching input" "\M-p" comint-previous-matching-input-from-input "Previous input matching current") ("Next matching input" "\M-n" comint-next-matching-input-from-input "Next input matching current") ("Previous input" "\C-c\M-p" comint-previous-input) ("Next input" "\C-c\M-n" comint-next-input) - line + -- (mode "Autodoc mode" "\C-ca" geiser-autodoc-mode) ("Symbol documentation" "\C-cd" geiser-doc-symbol-at-point "Documentation for symbol at point" :enable (symbol-at-point)) ("Module documentation" "\C-cm" geiser-repl--doc-module "Documentation for module at point" :enable (symbol-at-point)) ("Load module" "\C-cl" geiser-load-file) - line + -- ("Restart" ("\C-cz" "\C-c\C-z") switch-to-geiser :enable (not (geiser-repl--this-buffer-repl))) ("Revive REPL" ("\C-ck" "\C-c\C-k") geiser-repl-nuke "Use this command if the REPL becomes irresponsive" :enable (not (geiser-repl--this-buffer-repl))) - line + -- (custom "REPL options" geiser-repl)) |