diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-08-10 16:00:02 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-08-10 16:00:02 +0100 |
commit | 8d8809f2b587989b65055d80ab4518aa7b7a8b28 (patch) | |
tree | 1a602b1b9985af5faa62dea54c3850dce0770ce7 | |
parent | 499ee4e9f33e972b93afe319a9ce5803dd113875 (diff) | |
download | dotfiles-8d8809f2b587989b65055d80ab4518aa7b7a8b28.tar.gz |
Update eval-expr config
-rw-r--r-- | .emacs.d/lisp/init-lisp.el | 3 |
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))) |