mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Temporary fix for counsel-projectile arrayp error
This should be reversed once the issue is fixed upstream. Addresses #792
This commit is contained in:
@ -224,10 +224,14 @@ The point of this is to avoid Emacs locking up indexing massive file trees."
|
|||||||
#'counsel-find-file)
|
#'counsel-find-file)
|
||||||
|
|
||||||
((doom-project-p 'nocache)
|
((doom-project-p 'nocache)
|
||||||
(let ((files (projectile-current-project-files)))
|
#'projectile-find-file)
|
||||||
(if (<= (length files) ivy-sort-max-size)
|
|
||||||
#'counsel-projectile-find-file
|
;; FIXME When counsel-projectile-find-file is fixed upstream
|
||||||
#'projectile-find-file)))
|
;; ((doom-project-p 'nocache)
|
||||||
|
;; (let ((files (projectile-current-project-files)))
|
||||||
|
;; (if (<= (length files) ivy-sort-max-size)
|
||||||
|
;; #'counsel-projectile-find-file
|
||||||
|
;; #'projectile-find-file)))
|
||||||
|
|
||||||
(#'counsel-file-jump))))
|
(#'counsel-file-jump))))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user