mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Don't eat stacks in backtraces in debug mode
The error handlers were a little too effective. They obscured a large chunk of the stacktrace after errors, even in debug mode. This fixes that and ensures backtraces in debug mode are more helpful.
This commit is contained in:
@ -21,11 +21,11 @@ already there)."
|
||||
|
||||
;;;###autoload (autoload '+eshell:run "emacs/eshell/autoload/evil" nil t)
|
||||
(evil-define-command +eshell:run (command bang)
|
||||
;; TODO Add COMMAND support
|
||||
"TODO"
|
||||
(interactive "<fsh><!>")
|
||||
(if bang
|
||||
(+eshell/open command)
|
||||
(+eshell/open-popup command)))
|
||||
(+eshell/open nil command)
|
||||
(+eshell/open-popup nil command)))
|
||||
|
||||
;;;###autoload (autoload '+eshell/evil-change "emacs/eshell/autoload/evil" nil t)
|
||||
(evil-define-operator +eshell/evil-change (beg end type register yank-handler delete-func)
|
||||
|
Reference in New Issue
Block a user