about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-lisp.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-08-10 16:00:02 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-08-10 16:00:02 +0100
commit8d8809f2b587989b65055d80ab4518aa7b7a8b28 (patch)
tree1a602b1b9985af5faa62dea54c3850dce0770ce7 /.emacs.d/lisp/init-lisp.el
parent499ee4e9f33e972b93afe319a9ce5803dd113875 (diff)
downloaddotfiles-8d8809f2b587989b65055d80ab4518aa7b7a8b28.tar.gz
Update eval-expr config
Diffstat (limited to '.emacs.d/lisp/init-lisp.el')
-rw-r--r--.emacs.d/lisp/init-lisp.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-lisp.el b/.emacs.d/lisp/init-lisp.el
index 6abe0eb..dbc0a0d 100644
--- a/.emacs.d/lisp/init-lisp.el
+++ b/.emacs.d/lisp/init-lisp.el
@@ -3,11 +3,12 @@
 ;;; Code:
 (require 'init-paredit)
 
+;; From https://github.com/jwiegley/dot-emacs/blob/master/init.el
 (use-package eval-expr
   :bind ("M-:" . eval-expr)
   :config
   (defun eval-expr-minibuffer-setup ()
-    (local-set-key (kbd "<tab>") #'completion-at-point)
+    (local-set-key (kbd "<tab>") #'lisp-complete-symbol)
     (set-syntax-table emacs-lisp-mode-syntax-table)
     (paredit-mode)))