Function: projectile-run-gdb
projectile-run-gdb is an autoloaded, interactive and byte-compiled
function defined in projectile.el.
Signature
(projectile-run-gdb)
Documentation
Invoke gdb in the project's root.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-run-gdb ()
"Invoke `gdb' in the project's root."
(interactive)
(projectile-with-default-dir (projectile-acquire-root)
(call-interactively 'gdb)))