summaryrefslogtreecommitdiff
path: root/helm-eval.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-07-02 14:49:04 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-07-02 14:49:04 +0200
commit8e72c214b454343e97559819d6ffb92063ad2e1d (patch)
tree070444ebf1af50cb35dd1bf405ddf7cfdc0425b1 /helm-eval.el
parent120fae7d071bec5e4172ff9d84e5155a6e67fe63 (diff)
* helm-dabbrev.el: Allow usage in minibuffer, delay action and allow-nesting.
* helm-elisp.el: Same for lisp completion. * helm-eval.el: Get rid of emacs completion in minibuffer.
Diffstat (limited to 'helm-eval.el')
-rw-r--r--helm-eval.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/helm-eval.el b/helm-eval.el
index f95ea5cf..292ede15 100644
--- a/helm-eval.el
+++ b/helm-eval.el
@@ -54,7 +54,7 @@ Should take one arg: the string to display."
(set-keymap-parent map helm-map)
(define-key map (kbd "<C-return>") 'helm-eval-new-line-and-indent)
(define-key map (kbd "<tab>") 'lisp-indent-line)
- (define-key map (kbd "<C-tab>") 'lisp-complete-symbol)
+ (define-key map (kbd "<C-tab>") 'helm-lisp-completion-at-point)
(define-key map (kbd "C-p") 'previous-line)
(define-key map (kbd "C-n") 'next-line)
(define-key map (kbd "<up>") 'previous-line)
@@ -151,10 +151,9 @@ Should take one arg: the string to display."
"Preconfigured helm for `helm-source-evaluation-result' with `eldoc' support. "
(interactive)
(declare (special eldoc-idle-delay))
- (let ((timer (run-with-idle-timer eldoc-idle-delay
- 'repeat 'helm-eldoc-show-in-eval))
- (minibuffer-completing-symbol t) ; Enable lisp completion.
- (completion-cycle-threshold t)) ; Always cycle, (emacs24* only).
+ (let ((timer (run-with-idle-timer
+ eldoc-idle-delay 'repeat
+ 'helm-eldoc-show-in-eval)))
(unwind-protect
(minibuffer-with-setup-hook
'helm-eldoc-store-minibuffer