2019-04-21 19:59:44 -04:00
|
|
|
;;; tools/debugger/autoload/debug.el -*- lexical-binding: t; -*-
|
2017-06-08 11:47:56 +02:00
|
|
|
|
|
|
|
;;;###autoload
|
2017-09-23 14:29:39 +02:00
|
|
|
(defun +debugger/quit ()
|
2017-09-23 14:42:04 +02:00
|
|
|
"Quit the active debugger, if any."
|
2017-06-08 11:47:56 +02:00
|
|
|
(interactive)
|
2017-09-23 14:42:04 +02:00
|
|
|
(ignore-errors (call-interactively #'realgud:cmd-quit))
|
2017-06-08 11:47:56 +02:00
|
|
|
(doom/popup-close)
|
2017-09-23 14:42:04 +02:00
|
|
|
(when (featurep 'evil)
|
|
|
|
(evil-normal-state)))
|
2017-06-08 11:47:56 +02:00
|
|
|
|