propagate key-messages to plugin if result-buffer has focus? (didn't

work for the enter key...)
This commit is contained in:
eknauel 2005-05-26 11:34:35 +00:00
parent e549cc27ff
commit eb5fff8905
1 changed files with 2 additions and 1 deletions

View File

@ -132,6 +132,7 @@
(current-history-entry-selector-maker history-entry-result))
(define (update-current-result! new-value)
(debug-message "update-current-result! " new-value)
(cond
((current-history-item)
=> (lambda (entry)
@ -341,7 +342,7 @@
(refresh-result-window)
(loop (wait-for-input) c-x-pressed?))
((= ch 10)
((and (focus-on-command-buffer?) (= ch 10))
(handle-return-key)
(loop (wait-for-input) c-x-pressed?))