This is second of three big naming convention changes. In this commit, we change the naming conventions for hook functions and variable functions: 1. Replace the bar | to indicate a hook function with a -h suffix, e.g. doom|init-ui -> doom-init-ui-h doom|run-local-var-hooks -> doom-run-local-var-hooks-h 2. And add a -fn suffix for functions meant to be set on variables, e.g. (setq magit-display-buffer-function #'+magit-display-buffer-fn) See ccf327f8 for the reasoning behind these changes.
89 lines
2.8 KiB
EmacsLisp
89 lines
2.8 KiB
EmacsLisp
;;; core/autoload/config.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defvar doom-reload-hook nil
|
|
"A list of hooks to run when `doom/reload' is called.")
|
|
|
|
;;;###autoload
|
|
(defvar doom-reloading-p nil
|
|
"TODO")
|
|
|
|
;;;###autoload
|
|
(defun doom/open-private-config ()
|
|
"Browse your `doom-private-dir'."
|
|
(interactive)
|
|
(unless (file-directory-p doom-private-dir)
|
|
(make-directory doom-private-dir t))
|
|
(doom-project-browse doom-private-dir))
|
|
|
|
;;;###autoload
|
|
(defun doom/find-file-in-private-config ()
|
|
"Search for a file in `doom-private-dir'."
|
|
(interactive)
|
|
(doom-project-find-file doom-private-dir))
|
|
|
|
;;;###autoload
|
|
(defun doom/reload (&optional force-p)
|
|
"Reloads your private config.
|
|
|
|
This is experimental! It will try to do as `bin/doom refresh' does, but from
|
|
within this Emacs session. i.e. it reload autoloads files (if necessary),
|
|
reloads your package list, and lastly, reloads your private config.el.
|
|
|
|
Runs `doom-reload-hook' afterwards."
|
|
(interactive "P")
|
|
(require 'core-cli)
|
|
(general-auto-unbind-keys)
|
|
(let ((doom-reloading-p t))
|
|
(when (getenv "DOOMENV")
|
|
(doom-reload-env-file 'force))
|
|
(doom-reload-autoloads force-p)
|
|
(let (doom-init-p)
|
|
(doom-initialize))
|
|
(with-demoted-errors "PRIVATE CONFIG ERROR: %s"
|
|
(let (doom-init-modules-p)
|
|
(doom-initialize-modules)))
|
|
(when (bound-and-true-p doom-packages)
|
|
(doom/reload-packages))
|
|
(run-hook-wrapped 'doom-reload-hook #'doom-try-run-hook))
|
|
(general-auto-unbind-keys t)
|
|
(message "Finished!"))
|
|
|
|
;;;###autoload
|
|
(defun doom/reload-autoloads (&optional force-p)
|
|
"Reload only `doom-autoload-file' and `doom-package-autoload-file'.
|
|
|
|
This is much faster and safer than `doom/reload', but not as comprehensive. This
|
|
reloads your package and module visibility, but does not enable/disable It does
|
|
not reload your private config.
|
|
|
|
It is useful to only pull in changes performed by 'doom refresh' on the command
|
|
line."
|
|
(interactive "P")
|
|
(doom-initialize-autoloads doom-autoload-file)
|
|
(doom-initialize-autoloads doom-package-autoload-file))
|
|
|
|
;;;###autoload
|
|
(defun doom/reload-env ()
|
|
"Regenerates and reloads your shell environment.
|
|
|
|
Uses the same mechanism as 'bin/doom env reload'."
|
|
(interactive)
|
|
(compile (format "%s env refresh" (expand-file-name "bin/doom" doom-emacs-dir)))
|
|
(while compilation-in-progress
|
|
(sit-for 1))
|
|
(unless (file-readable-p doom-env-file)
|
|
(error "Failed to generate env file"))
|
|
(doom-load-env-vars doom-env-file))
|
|
|
|
;;;###autoload
|
|
(defun doom/reload-theme ()
|
|
"Reload the current color theme."
|
|
(interactive)
|
|
(let ((theme (or (car-safe custom-enabled-themes) doom-theme)))
|
|
(when theme
|
|
(mapc #'disable-theme custom-enabled-themes))
|
|
(when (and doom-theme (not (memq doom-theme custom-enabled-themes)))
|
|
(let (doom--prefer-theme-elc)
|
|
(load-theme doom-theme t)))
|
|
(doom-init-fonts-h)))
|