diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-05-17 15:54:46 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-05-17 15:54:46 +0100 |
commit | 9823984e64c88863bd003cd58e59104c2a929833 (patch) | |
tree | 22ca30cbb74663efd7e4af4dacdffb01213d0516 | |
parent | d6d9ab292ff9ff3bb3bd6b672399bd5d9e6833cf (diff) | |
download | dotfiles-9823984e64c88863bd003cd58e59104c2a929833.tar.gz |
Fix consult-fd
-rw-r--r-- | .emacs.d/lisp/init-minibuffer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-minibuffer.el b/.emacs.d/lisp/init-minibuffer.el index 0ba6de5..9f6c559 100644 --- a/.emacs.d/lisp/init-minibuffer.el +++ b/.emacs.d/lisp/init-minibuffer.el @@ -230,7 +230,7 @@ DEFS is a plist associating completion categories to commands." "fd"))) (pcase-let* ((`(,arg . ,opts) (consult--command-split input)) (`(,re . ,hl) (funcall consult--regexp-compiler - arg 'extended))) + arg 'extended t))) (when re (list :command (append (list consult--fd-command |