mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
fix(lib): doom-project-find-file: cl-no-applicable-method project-root
Fix: #7312
This commit is contained in:
@ -155,8 +155,8 @@ If DIR is not a project, it will be indexed (but not cached)."
|
|||||||
((and (bound-and-true-p ivy-mode)
|
((and (bound-and-true-p ivy-mode)
|
||||||
(fboundp 'counsel-file-jump))
|
(fboundp 'counsel-file-jump))
|
||||||
(call-interactively #'counsel-file-jump))
|
(call-interactively #'counsel-file-jump))
|
||||||
((project-current nil dir)
|
((when-let ((pr (project-current nil dir)))
|
||||||
(project-find-file-in nil nil dir))
|
(project-find-file-in nil nil pr)))
|
||||||
((and (bound-and-true-p helm-mode)
|
((and (bound-and-true-p helm-mode)
|
||||||
(fboundp 'helm-find-files))
|
(fboundp 'helm-find-files))
|
||||||
(call-interactively #'helm-find-files))
|
(call-interactively #'helm-find-files))
|
||||||
|
Reference in New Issue
Block a user