Variable: projectile--watch-pending-events
projectile--watch-pending-events is a variable defined in
projectile.el.
Value
#s(hash-table test equal)
Documentation
Map of project root to its queued (not yet processed) file-notify events.
Events are pushed by projectile--handle-watch-event (so the list is in
reverse arrival order) and drained by projectile--process-watch-events
once the debounce timer fires.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defvar projectile--watch-pending-events (make-hash-table :test 'equal)
"Map of project root to its queued (not yet processed) file-notify events.
Events are pushed by `projectile--handle-watch-event' (so the list is in
reverse arrival order) and drained by `projectile--process-watch-events'
once the debounce timer fires.")