Temporary fix for counsel-projectile arrayp error
This should be reversed once the issue is fixed upstream. Addresses #792
This commit is contained in:
parent
68dc510a1c
commit
87c8f6e18e
1 changed files with 8 additions and 4 deletions
|
@ -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))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue