2016-11-23 03:49:23 +00:00
|
|
|
;;; core-custom-settings.el --- Spacemacs Core File
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2016-11-23 03:49:23 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-11-23 03:49:23 +00:00
|
|
|
(require 'core-dotspacemacs)
|
|
|
|
|
|
|
|
(defvar spacemacs--custom-file (concat spacemacs-cache-directory
|
|
|
|
".custom-settings"))
|
|
|
|
|
2017-02-20 03:51:58 +00:00
|
|
|
(defun spacemacs/initialize-custom-file ()
|
2019-02-18 16:56:41 +00:00
|
|
|
"Initialize the custom file.
|
|
|
|
Does not initialize writing the custom file into the dotfile. To
|
|
|
|
complete that part see `spacemacs/initialize-custom-file-sync'."
|
2017-02-20 03:51:58 +00:00
|
|
|
;; setup auto-rewrite of custom settings only if custom-file
|
|
|
|
;; has not been set by the user
|
|
|
|
(when (null custom-file)
|
2019-02-18 16:56:41 +00:00
|
|
|
(setq custom-file spacemacs--custom-file))
|
2017-02-20 03:51:58 +00:00
|
|
|
;; initialize the cache file contents
|
|
|
|
(unless (or (not (string-equal custom-file spacemacs--custom-file))
|
|
|
|
(file-exists-p spacemacs--custom-file))
|
2016-11-23 03:49:23 +00:00
|
|
|
(with-temp-file spacemacs--custom-file
|
|
|
|
(let ((standard-output (current-buffer)))
|
|
|
|
(princ ";; -*- mode: emacs-lisp -*-\n")
|
|
|
|
(princ ";; This file is where Emacs writes custom variables.
|
|
|
|
;; Spacemacs will copy its content to your dotfile automatically in the
|
|
|
|
;; function `dotspacemacs/emacs-custom-settings'.
|
|
|
|
;; Do not alter this file, use Emacs customize interface instead.\n\n")))))
|
|
|
|
|
2019-02-18 16:56:41 +00:00
|
|
|
(defun spacemacs/initialize-custom-file-sync ()
|
|
|
|
"Initialize syncing of the custom file to the dotfile."
|
|
|
|
(when (string-equal custom-file spacemacs--custom-file)
|
|
|
|
(advice-add 'custom-save-all :after
|
|
|
|
#'spacemacs/write-custom-settings-to-dotfile)))
|
|
|
|
|
2016-11-23 03:49:23 +00:00
|
|
|
(defun spacemacs//delete-emacs-custom-settings ()
|
|
|
|
"Delete function `dotspacemacs/emacs-custom-settings' from dotfile.
|
|
|
|
|
|
|
|
Leave point at the old location of the defun, or (if there were none) at the
|
|
|
|
end of the buffer.
|
|
|
|
This function does not save the buffer."
|
|
|
|
(goto-char (point-min))
|
|
|
|
;; Skip all whitespace and comments.
|
|
|
|
(while (forward-comment 1))
|
|
|
|
(let (first)
|
|
|
|
(catch 'found
|
|
|
|
(while t ;; We exit this loop only via throw.
|
|
|
|
;; Skip all whitespace and comments.
|
|
|
|
(while (forward-comment 1))
|
|
|
|
(let ((start (point))
|
|
|
|
(sexp (condition-case nil
|
|
|
|
(read (current-buffer))
|
|
|
|
(end-of-file (throw 'found nil)))))
|
|
|
|
(when (and (listp sexp)
|
|
|
|
(eq (car sexp) 'defun)
|
|
|
|
(eq (cadr sexp) 'dotspacemacs/emacs-custom-settings))
|
|
|
|
(delete-region start (point))
|
|
|
|
(unless first
|
|
|
|
(setq first (point)))))))
|
|
|
|
(if first
|
|
|
|
(goto-char first)
|
|
|
|
;; Move in front of local variables, otherwise long Custom
|
|
|
|
;; entries would make them ineffective.
|
|
|
|
(let ((pos (point-max))
|
|
|
|
(case-fold-search t))
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-max))
|
|
|
|
(search-backward "\n\^L" (max (- (point-max) 3000) (point-min))
|
|
|
|
'move)
|
|
|
|
(when (search-forward "Local Variables:" nil t)
|
|
|
|
(setq pos (line-beginning-position))))
|
|
|
|
(goto-char pos)))))
|
|
|
|
|
|
|
|
(defun spacemacs//get-custom-settings-from-cache ()
|
|
|
|
"Returns the custom settings from `spacemacs--custom-file'."
|
|
|
|
(with-current-buffer (let ((find-file-visit-truename t)
|
|
|
|
(delay-mode-hooks t))
|
|
|
|
(find-file-noselect spacemacs--custom-file))
|
|
|
|
(goto-char (point-min))
|
|
|
|
;; Skip all whitespace and comments.
|
|
|
|
(while (forward-comment 1))
|
|
|
|
(buffer-substring-no-properties (point) (point-max))))
|
|
|
|
|
|
|
|
(defun spacemacs/write-custom-settings-to-dotfile ()
|
|
|
|
"Write `dotspacemacs/emacs-custom-settings' function in the dotfile"
|
|
|
|
(message "Writing Emacs custom settings to dotfile...")
|
|
|
|
(with-current-buffer (let ((find-file-visit-truename t)
|
|
|
|
(delay-mode-hooks t))
|
|
|
|
(find-file-noselect (dotspacemacs/location)))
|
|
|
|
(spacemacs//delete-emacs-custom-settings)
|
|
|
|
(let ((standard-output (current-buffer)))
|
|
|
|
(princ "(defun dotspacemacs/emacs-custom-settings ()\n")
|
|
|
|
(princ " \"Emacs custom settings.
|
|
|
|
This is an auto-generated function, do not modify its content directly, use
|
|
|
|
Emacs customize menu instead.
|
|
|
|
This function is called at the very end of Spacemacs initialization.\"\n")
|
|
|
|
(princ (spacemacs//get-custom-settings-from-cache))
|
|
|
|
(princ ")")
|
|
|
|
(save-buffer)
|
|
|
|
(kill-buffer (current-buffer)))))
|
|
|
|
|
|
|
|
(provide 'core-custom-settings)
|