mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-24 19:01:09 -08:00
11 lines
293 B
EmacsLisp
11 lines
293 B
EmacsLisp
;;; feature/debugger/autoload/debug.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +debugger/quit ()
|
|
"Quit the active debugger, if any."
|
|
(interactive)
|
|
(ignore-errors (call-interactively #'realgud:cmd-quit))
|
|
(doom/popup-close)
|
|
(when (featurep 'evil)
|
|
(evil-normal-state)))
|
|
|