Variable: projectile--async-index-processes

projectile--async-index-processes is a variable defined in projectile.el.

Value

#s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data
	      ())

Documentation

Map of project root -> in-flight async indexing process.

Used to avoid running more than one background index for the same project at a time, and to discard a stale background result whose project cache was invalidated while it was still running.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defvar projectile--async-index-processes (make-hash-table :test 'equal)
  "Map of project root -> in-flight async indexing process.
Used to avoid running more than one background index for the same
project at a time, and to discard a stale background result whose
project cache was invalidated while it was still running.")