From 44602f5816191e98c41b1b21643f8626c1320912 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Sun, 12 Feb 2023 04:08:21 -0500 Subject: [PATCH] fix invalid preview key --- dot_config/emacs/init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_config/emacs/init.el b/dot_config/emacs/init.el index 3e8932a..b927f27 100644 --- a/dot_config/emacs/init.el +++ b/dot_config/emacs/init.el @@ -311,8 +311,8 @@ ;; Optionally configure preview. The default value ;; is 'any, such that any key triggers the preview. - ;; (setq consult-preview-key 'any) - (setq consult-preview-key (kbd "M-.")) + (setq consult-preview-key 'any) + ;; (setq consult-preview-key (kbd "M-.")) ;; (setq consult-preview-key (list (kbd "") (kbd ""))) ;; For some commands and buffer sources it is useful to configure the ;; :preview-key on a per-command basis using the `consult-customize' macro.