Function: ibuffer-filter-by-projectile-files
ibuffer-filter-by-projectile-files is an interactive and byte-compiled
function defined in projectile.el.
Signature
(ibuffer-filter-by-projectile-files QUALIFIER)
Documentation
Show Ibuffer with all buffers in the current project.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;; IBuffer integration
(define-ibuffer-filter projectile-files
"Show Ibuffer with all buffers in the current project."
(:reader (read-directory-name "Project root: " (projectile-project-root))
:description nil)
(with-current-buffer buf
(let ((directory (file-name-as-directory (expand-file-name qualifier))))
(and (projectile-project-buffer-p buf directory)
(equal directory
(projectile-project-root))))))