Emacs: run diff-hl-update when magit refreshes a buffer
Alan Pearce alan@bulbstudios.com
Thu, 31 Oct 2013 21:50:49 +0000
1 files changed, 3 insertions(+), 1 deletions(-)
jump to
M emacs/init.el → emacs/init.el
@@ -784,7 +784,9 @@ (setq vc-follow-symlinks t))) (use-package diff-hl :ensure t - :init (global-diff-hl-mode)) + :init (progn + (global-diff-hl-mode) + (add-hook 'magit-refresh-file-buffer-hook #'diff-hl-update))) (use-package magit :commands (magit-status)