diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-10-05 16:41:12 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-10-05 16:41:12 +0100 |
commit | e80520bd0ce93efdf39390fd6a70806a00a72a0a (patch) | |
tree | afc2870ebfb39767e356c1098a145ebcf71ca1a7 /.emacs.d/lisp/init-minibuffer.el | |
parent | d72c8b5cc78977287f489bef2a4d700f6b071101 (diff) | |
download | dotfiles-e80520bd0ce93efdf39390fd6a70806a00a72a0a.tar.gz |
Fix function name
Diffstat (limited to '.emacs.d/lisp/init-minibuffer.el')
-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 66a6cf1..15047b0 100644 --- a/.emacs.d/lisp/init-minibuffer.el +++ b/.emacs.d/lisp/init-minibuffer.el @@ -242,7 +242,7 @@ DEFS is a plist associating completion categories to commands." (defun consult-line-symbol-at-point () (interactive) (consult-line (thing-at-point 'symbol))) - (defun consult-parent-ripgrep (&optional initial) + (defun consult-ripgrep-parent (&optional initial) (interactive "P") (consult-ripgrep (file-name-directory (directory-file-name (persp-current-project-root))) initial)) (defvar consult--fd-command nil) |