mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Remove doom/reload
This command didn't do what was intended, and it would be too much work to write one that looks for outdated packages and reloads them. Instead, just restart Emacs for changes to take effect. This is only necessary if package management is done outside of Emacs. You (theoretically) don't have to do anything if doing it from the inside.
This commit is contained in:
@ -235,7 +235,9 @@ appropriate."
|
||||
(error
|
||||
(message "Error (%s): %s" (car pkg) ex))))
|
||||
|
||||
(message "Finished!")))))
|
||||
(message "Finished!")
|
||||
(when noninteractive
|
||||
(message "Restart emacs for these changes to take effect."))))))
|
||||
|
||||
;;;###autoload
|
||||
(defun doom/packages-update ()
|
||||
@ -275,7 +277,9 @@ appropriate."
|
||||
(error
|
||||
(message "Error installing %s: %s" (car pkg) ex))))
|
||||
|
||||
(message "Finished!")))))
|
||||
(message "Finished!")
|
||||
(when noninteractive
|
||||
(message "Restart emacs for these changes to take effect."))))))
|
||||
|
||||
;;;###autoload
|
||||
(defun doom/packages-autoremove ()
|
||||
@ -305,7 +309,9 @@ appropriate."
|
||||
(error
|
||||
(message "Error deleting %s: %s" pkg ex))))
|
||||
|
||||
(message "Finished!")))))
|
||||
(message "Finished!")
|
||||
(when noninteractive
|
||||
(message "Restart emacs for these changes to take effect."))))))
|
||||
|
||||
;;;###autoload
|
||||
(defalias 'doom/install-package 'package-install)
|
||||
|
Reference in New Issue
Block a user