diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-06-27 16:55:00 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-06-27 16:55:00 +0200 |
commit | dfabe981cf46eac0e207c90af18e283fa29a03d5 (patch) | |
tree | f00a4148edb39954fc7822397c53a625c7a27abe /elisp | |
parent | 097811c953284f1c676de8ceee45a70f0b4e64a7 (diff) | |
download | geiser-dfabe981cf46eac0e207c90af18e283fa29a03d5.tar.gz geiser-dfabe981cf46eac0e207c90af18e283fa29a03d5.tar.bz2 |
Some REPL tweaks.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-repl.el | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index c9f3d26..d10d84a 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -314,14 +314,22 @@ module command as a string") (remove (current-buffer) geiser-repl--closed-repls))) (defun geiser-repl--input-filter (str) - (and (not (string-match "^\\s *$" str)) - (not (string-match "^,quit *$" str)))) + (not (or (geiser-con--is-debugging) + (string-match "^\\s *$" str) + (string-match "^,quit *$" str)))) + +(defun geiser-repl--old-input () + (save-excursion + (let ((end (point))) + (backward-sexp) + (buffer-substring (point) end)))) (defun geiser-repl--history-setup () (set (make-local-variable 'comint-input-ring-file-name) (geiser-repl--history-file)) (set (make-local-variable 'comint-input-ring-size) geiser-repl-history-size) (set (make-local-variable 'comint-input-filter) 'geiser-repl--input-filter) + (set (make-local-variable 'comint-get-old-input) 'geiser-repl--old-input) (add-hook 'kill-buffer-hook 'geiser-repl--on-kill nil t) (comint-read-input-ring t) (set-process-sentinel (get-buffer-process (current-buffer)) @@ -409,8 +417,8 @@ module command as a string") ("Edit symbol" "\M-." geiser-edit--symbol-at-point :enable (symbol-at-point)) -- - ("Switch to module..." ("\C-c\C-m" "\C-cm") switch-to-geiser-module) - ("Import module" ("\C-c\C-i" "\C-ci") geiser-repl-import-module) + ("Switch to module..." ("\C-cm" "\C-c\C-m") switch-to-geiser-module) + ("Import module..." ("\C-ci" "\C-c\C-i") geiser-repl-import-module) -- ("Previous matching input" "\M-p" comint-previous-matching-input-from-input "Previous input matching current") @@ -419,8 +427,8 @@ module command as a string") ("Previous input" "\C-c\M-p" comint-previous-input) ("Next input" "\C-c\M-n" comint-next-input) -- - (mode "Autodoc mode" ("\C-c\C-a" "\C-ca") geiser-autodoc-mode) - ("Module documentation" ("\C-c\C-d" "\C-cd") geiser-repl--doc-module + (mode "Autodoc mode" ("\C-ca" "\C-c\C-a") geiser-autodoc-mode) + ("Module documentation" ("\C-cd" "\C-c\C-d") geiser-repl--doc-module "Documentation for module at point" :enable (symbol-at-point)) -- ("Kill Scheme interpreter" "\C-c\C-q" comint-kill-subjob @@ -433,6 +441,8 @@ module command as a string") -- (custom "REPL options" geiser-repl)) +(define-key geiser-repl-mode-map [menu-bar completion] 'undefined) + ;;; Unload: |