Browse Source

[Fix #444] Add command prelude-update-packages

custom
Bozhidar Batsov 12 years ago
parent
commit
3cc9ad7400
  1. 9
      core/prelude-core.el

9
core/prelude-core.el

@ -463,6 +463,15 @@ Doesn't mess with special buffers."
(prelude-recompile-init)
(message "Update finished. Restart Emacs to complete the process.")))
(defun prelude-update-packages ()
"Update Prelude's packages.
This includes package installed via `prelude-require-package'."
(interactive)
(when (y-or-n-p "Do you want to update Prelude's packages? ")
(epl-upgrade prelude-packages)
(message "Update finished. Restart Emacs to complete the process.")))
(defun thing-at-point-goto-end-of-integer ()
"Go to end of integer at point."
(let ((inhibit-changing-match-data t))

Loading…
Cancel
Save