You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(use-package consult
:ensuret:bind
(("C-s". consult-line)
("C-x b". consult-buffer)))
(use-package embark
:ensuret:bind
(("C-.". embark-act) ;; pick some comfortable binding
("C-;". embark-dwim) ;; good alternative: M-.
("C-h B". embark-bindings)) ;; alternative for `describe-bindings':init
(setq prefix-help-command #'embark-prefix-help-command)
:config
(add-to-list'display-buffer-alist
'("\\`\\*Embark Collect \\(Live\\|Completions\\)\\*"nil
(window-parameters (mode-line-format. none)))))
(use-package embark-consult
:ensuret; only need to install it, embark loads it after consult if found:after (embark consult)
:demandt:hook
(embark-collect-mode . consult-preview-at-point-mode))
(add-hook'embark-collect-mode-hook
(lambda ()
(message"embark-collect-mode activated!")
(consult-preview-at-point-mode 1)))
I am using the following configuration. After opening dired with C-x C-f, I use m to select multiple files, then run M-x embark-collect. After switching to the embark-collect buffer with C-x o, I confirm that consult-preview-at-point-mode is enabled. However, when moving the cursor in the buffer, there is no real-time preview of the files.
version: GNU Emacs 29.4
consult-20241016.1007
embark-20241003.1953
embark-consult-20240919.1831
The text was updated successfully, but these errors were encountered:
I am using the following configuration. After opening dired with C-x C-f, I use m to select multiple files, then run M-x embark-collect. After switching to the embark-collect buffer with C-x o, I confirm that consult-preview-at-point-mode is enabled. However, when moving the cursor in the buffer, there is no real-time preview of the files.
version: GNU Emacs 29.4
consult-20241016.1007
embark-20241003.1953
embark-consult-20240919.1831
The text was updated successfully, but these errors were encountered: