summaryrefslogtreecommitdiff
path: root/helm-eval.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2014-10-22 15:54:43 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2014-10-22 15:54:43 +0200
commite6daefc3466e9bc5cf48627365e29b7c62c0138e (patch)
tree3d2d8e12dfbdaf04e372e8f7b6b3a8c751ea5a01 /helm-eval.el
parentfe9d48caeb910e02c5a18e36e7c7c11ba3224886 (diff)
* helm-eval.el: Fix keymap conflict with tab.
Diffstat (limited to 'helm-eval.el')
-rw-r--r--helm-eval.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-eval.el b/helm-eval.el
index 9fbf0eee..65c65b0b 100644
--- a/helm-eval.el
+++ b/helm-eval.el
@@ -53,7 +53,7 @@ Should take one arg: the string to display."
(let ((map (make-sparse-keymap)))
(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 "<M-tab>") 'lisp-indent-line)
(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)