mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix doom/delete-backward-word errors in minibuffer
The cause of the error is harmless, but the error itself was causing breakage in the minibuffer.
This commit is contained in:
@ -222,7 +222,7 @@ line to beginning of line. Same as `evil-delete-back-to-indentation'."
|
||||
"Like `backward-kill-word', but doesn't affect the kill-ring."
|
||||
(interactive "p")
|
||||
(let (kill-ring)
|
||||
(backward-kill-word arg)))
|
||||
(ignore-errors (backward-kill-word arg))))
|
||||
|
||||
;;;###autoload
|
||||
(defun doom/dumb-indent ()
|
||||
|
Reference in New Issue
Block a user