Function: projectile-project-buffers-other-buffer
projectile-project-buffers-other-buffer is an autoloaded, interactive
and byte-compiled function defined in projectile.el.
Signature
(projectile-project-buffers-other-buffer)
Documentation
Switch to the most recently selected buffer project buffer.
Only buffers not visible in windows are returned.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-project-buffers-other-buffer ()
"Switch to the most recently selected buffer project buffer.
Only buffers not visible in windows are returned."
(interactive)
(switch-to-buffer (car (projectile-project-buffers-non-visible)) nil t))