Fix: update vcs.

This commit is contained in:
Vincent Zhang 2018-06-28 00:26:44 +08:00
parent c354cdde0c
commit bd097590a2

View file

@ -613,10 +613,8 @@ directory, the file name, and its state (modified, read-only or non-existent)."
;; vcs
;;
(defvar-local doom-modeline--vcs nil)
(defun doom-modeline--update-vcs ()
"Update vsc status in mode-line."
(setq doom-modeline--vcs
(doom-modeline-def-segment vcs
"Displays the current branch, colored based on its state."
(when (and vc-mode buffer-file-name)
(let* ((backend (vc-backend buffer-file-name))
(state (vc-state buffer-file-name backend)))
@ -648,13 +646,7 @@ directory, the file name, and its state (modified, read-only or non-existent)."
" "
(propertize (substring vc-mode (+ (if (eq backend 'Hg) 2 3) 2))
'face (if active face))
" "))))))
(add-hook 'after-save-hook #'doom-modeline--update-vcs)
(add-hook 'find-file-hook #'doom-modeline--update-vcs t)
(doom-modeline-def-segment vcs
"Displays the current branch, colored based on its state."
doom-modeline--vcs)
" ")))))
;;