Refactor Doom core & reload autoloads remotely

- Move subr-x/cl-lib loading to core-lib
- Revise docstrings for and rename various CLI functions to be more
  descriptive and up-to-date
- After regenerating autoloads file, bin/doom will try to reload
  autoloads files remotely, through the server/daemon, if possible. This
  is highly experimental and could break
This commit is contained in:
Henrik Lissner 2019-06-16 23:01:17 +02:00
parent 72fd61e07b
commit 6be401f1a7
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
5 changed files with 91 additions and 50 deletions

View file

@ -173,9 +173,10 @@ savehist file."
(def-package! server
:when (display-graphic-p)
:after-call (pre-command-hook after-find-file)
:config
:init
(when-let* ((name (getenv "EMACS_SERVER_NAME")))
(setq server-name name))
:config
(unless (server-running-p)
(server-start)))