spacemacs/core/spacemacs-mode.el

98 lines
3.7 KiB
EmacsLisp
Raw Normal View History

2014-09-24 00:47:20 +00:00
(setq message-log-max 16384)
(defconst emacs-start-time (current-time))
(defvar spacemacs-min-version "24.3"
"Mininal required version of Emacs.")
(define-derived-mode spacemacs-mode special-mode "spacemacs-mode"
2014-09-10 03:12:31 +00:00
"Spacemacs major mode for startup screen."
:syntax-table nil
:abbrev-table nil
(setq truncate-lines t)
(setq cursor-type nil))
2014-09-10 02:02:38 +00:00
(defun spacemacs/emacs-version-ok ()
(not (version< emacs-version spacemacs-min-version)))
2014-09-07 03:28:13 +00:00
(defun spacemacs-load-dotfile ()
"Load ~/.spacemacs. If it is not found then copy .spacemacs.template to
~/.spacemacs"
(let ((dotfile (concat user-home-directory ".spacemacs")))
(unless (file-exists-p dotfile)
(copy-file (concat user-emacs-directory ".spacemacs.template") dotfile))
(load dotfile)))
2014-09-24 00:47:20 +00:00
(defvar spacemacs-title-length 70)
(defvar loading-counter 0)
(defvar loading-text "Loading")
(defvar loading-done-text "Ready!")
(defvar loading-dots-chunk-count 3)
2014-09-24 00:47:20 +00:00
(defvar loading-dots-count
(- spacemacs-title-length (length loading-text) (length loading-done-text)))
2014-09-24 00:47:20 +00:00
(defvar loading-dots-chunk-size (/ loading-dots-count loading-dots-chunk-count))
(defvar loading-dots-chunk-threshold 0)
(defun spacemacs-buffer ()
"Create and initialize the spacemacs startup buffer."
(interactive)
(switch-to-buffer (get-buffer-create "*spacemacs*"))
(spacemacs-mode)
(let ((buffer-read-only nil))
(insert-file-contents (concat spacemacs-core-directory "banner.txt"))
(unless (spacemacs/emacs-version-ok)
(append-to-spacemacs-buf
(format "\nError: Minimal required Emacs version for Spacemacs is %s "
spacemacs-min-version))
(append-to-spacemacs-buf (format "whereas current Emacs version is %s.\n"
emacs-version))
(append-to-spacemacs-buf "Spacemacs is disabled.\n")
(setq inhibit-startup-screen t)
(redisplay))))
(defun append-to-spacemacs-buf (msg &optional messagebuf)
"Append MSG to spacemacs buffer. If MESSAGEBUF is not nil then MSG is
also written in message buffer."
(with-current-buffer (get-buffer-create "*spacemacs*")
(goto-char (point-max))
(let ((buffer-read-only nil))
(insert msg)
(if messagebuf (message "(Spacemacs) %s" msg)))))
(defun replace-last-line-of-spacemacs-buf (msg &optional messagebuf)
"Replace the last line of the spacemacs buffer with MSG. If MESSAGEBUF is
not nil then MSG is also written in message buffer."
(with-current-buffer (get-buffer-create "*spacemacs*")
(goto-char (point-max))
(let ((buffer-read-only nil))
(delete-region (line-beginning-position) (point-max))
(insert msg)
(if messagebuf (message "(Spacemacs) %s" msg)))))
(defun loading-animation ()
"Display LOADING-TITLE with trailing dots of max length
SPACEMACS-TITLE-LENGTH. New loading title is displayed by chunk
of size LOADING-DOTS-CHUNK-THRESHOLD."
(setq loading-counter (1+ loading-counter))
(if (>= loading-counter loading-dots-chunk-threshold)
(progn
(setq loading-counter 0)
(let ((i 0))
(while (< i loading-dots-chunk-size)
(setq loading-text (concat loading-text "."))
(setq i (1+ i))))
(replace-last-line-of-spacemacs-buf loading-text)
(redisplay))))
;; Ready message
(unless (not (spacemacs/emacs-version-ok))
(add-hook 'after-init-hook
(lambda ()
(append-to-spacemacs-buf (format "%s\n" loading-done-text))
;; from jwiegley
;; https://github.com/jwiegley/dot-emacs/blob/master/init.el
(let ((elapsed (float-time
(time-subtract (current-time) emacs-start-time))))
(append-to-spacemacs-buf
(format "[%.3fs]\n" elapsed))))))