Skip to content

Commit a87ee7c

Browse files
committed
Use window-buffer-change-function hook
This variable specifies functions called during redisplay when window buffers have changed. The value should be a list of functions that take one argument. Functions specified buffer-locally are called for any window showing the corresponding buffer if that window has been created or assigned that buffer since the last time window change functions were run. In this case the window is passed as argument. I used more naively this hook for +2 years with in mind to contribute back sometime. Unfortunately as time passed, I lost the memory of a reproductible test case. I think I implemented this after seeing #115 (Git gutter annotations disappearing). As I finally took the time to present you the hook, I realized that it would mean to obsolete a bunch of functions and variables in the library such as: - git-gutter:update-windows-commands - git-gutter:pre-command-hook - git-gutter:update-other-window-buffers - git-gutter:post-command-hook - git-gutter:quit-window - git-gutter:switch-to-buffer I also removed `git-gutter-mode` as it is generated by the minor mode and while testing my changes, its presence caused a small bug of the mode not activating when it should have.
1 parent 9beaed9 commit a87ee7c

File tree

1 file changed

+11
-52
lines changed

1 file changed

+11
-52
lines changed

git-gutter.el

+11-52
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
;; Copyright (C) 2016-2020 Syohei YOSHIDA <[email protected]>
44
;; Copyright (C) 2020-2022 Neil Okamoto <[email protected]>
55
;; Copyright (C) 2020-2024 Shen, Jen-Chieh <[email protected]>
6+
;; Copyright (C) 2024-2025 Seven Beep <[email protected]>
67

78
;; Author: Syohei YOSHIDA <[email protected]>
89
;; Maintainer: Neil Okamoto <[email protected]>
@@ -37,8 +38,6 @@
3738
:prefix "git-gutter:"
3839
:group 'vc)
3940

40-
(defvar git-gutter-mode nil)
41-
4241
(defcustom git-gutter:window-width nil
4342
"Character width of gutter window. Emacs mistakes width of some characters.
4443
It is better to explicitly assign width to this variable, if you use full-width
@@ -73,14 +72,6 @@ character for signs of changes"
7372
(repeat :inline t (function :tag "Update command")))
7473
:group 'git-gutter)
7574

76-
(defcustom git-gutter:update-windows-commands
77-
'(kill-buffer ido-kill-buffer)
78-
"Each command of this list is executed, gutter information is
79-
updated and gutter information of other windows."
80-
:type '(list (function :tag "Update command")
81-
(repeat :inline t (function :tag "Update command")))
82-
:group 'git-gutter)
83-
8475
(defcustom git-gutter:update-hooks
8576
'(after-save-hook
8677
after-revert-hook
@@ -508,31 +499,11 @@ Argument TEST is the case before BODY execution."
508499
(and (git-gutter:base-file)
509500
default-directory (file-directory-p default-directory)))
510501

511-
(defun git-gutter:pre-command-hook ()
512-
(unless (memq this-command git-gutter:ignore-commands)
513-
(setq git-gutter:real-this-command this-command)))
514-
515-
(defun git-gutter:update-other-window-buffers (curwin curbuf)
516-
(save-selected-window
517-
(cl-loop for win in (window-list)
518-
unless (eq win curwin)
519-
do
520-
(progn
521-
(select-window win)
522-
(let ((win-width (window-margins win)))
523-
(unless (car win-width)
524-
(if (eq (current-buffer) curbuf)
525-
(git-gutter:set-window-margin (git-gutter:window-margin))
526-
(git-gutter:update-diffinfo git-gutter:diffinfos))))))))
527-
528-
(defun git-gutter:post-command-hook ()
529-
(cond ((memq git-gutter:real-this-command git-gutter:update-commands)
530-
(git-gutter))
531-
((memq git-gutter:real-this-command git-gutter:update-windows-commands)
532-
(git-gutter)
533-
(unless (bound-and-true-p global-linum-mode)
534-
(git-gutter:update-other-window-buffers (selected-window)
535-
(current-buffer))))))
502+
(defun git-gutter:window-buffer-change-function (window)
503+
"Function to hook into `window-buffer-change-function' to update `git-gutter'."
504+
(with-selected-window (window-normalize-window window)
505+
(when git-gutter-mode
506+
(git-gutter))))
536507

537508
(defsubst git-gutter:diff-process-buffer (curfile)
538509
(concat " *git-gutter-" curfile "-*"))
@@ -607,8 +578,8 @@ Argument TEST is the case before BODY execution."
607578
(make-local-variable 'git-gutter:diffinfos)
608579
;;(setq-local git-gutter:start-revision nil)
609580
(add-hook 'kill-buffer-hook 'git-gutter:kill-buffer-hook nil t)
610-
(add-hook 'pre-command-hook 'git-gutter:pre-command-hook t)
611-
(add-hook 'post-command-hook 'git-gutter:post-command-hook nil t)
581+
(add-hook 'window-buffer-change-functions
582+
#'git-gutter:window-buffer-change-function nil t)
612583
(dolist (hook git-gutter:update-hooks)
613584
(add-hook hook 'git-gutter nil t))
614585
(git-gutter)
@@ -621,10 +592,10 @@ Argument TEST is the case before BODY execution."
621592
(message "Here is not %s work tree" (git-gutter:show-backends)))
622593
(git-gutter-mode -1))
623594
(remove-hook 'kill-buffer-hook 'git-gutter:kill-buffer-hook t)
624-
(remove-hook 'pre-command-hook 'git-gutter:pre-command-hook t)
625-
(remove-hook 'post-command-hook 'git-gutter:post-command-hook t)
626595
(dolist (hook git-gutter:update-hooks)
627596
(remove-hook hook 'git-gutter t))
597+
(remove-hook 'window-buffer-change-functions
598+
#'git-gutter:window-buffer-change-function t)
628599
(git-gutter:clear-gutter)))
629600

630601
(defun git-gutter--turn-on ()
@@ -980,19 +951,6 @@ Argument TEST is the case before BODY execution."
980951
(run-with-idle-timer 0.1 nil 'git-gutter)))
981952
(advice-add 'toggle-truncate-lines :after #'git-gutter:toggle-truncate-lines)
982953

983-
;; `quit-window' and `switch-to-buffer' are called from other
984-
;; commands. So calling git-gutter from `post-command-hook' is not enough, use
985-
;; advices instead.
986-
(defun git-gutter:quit-window (&rest _args)
987-
(when git-gutter-mode
988-
(git-gutter)))
989-
(advice-add 'quit-window :after #'git-gutter:quit-window)
990-
991-
(defun git-gutter:switch-to-buffer (&rest _args)
992-
(when git-gutter-mode
993-
(git-gutter)))
994-
(advice-add 'switch-to-buffer :after #'git-gutter:switch-to-buffer)
995-
996954
(defun git-gutter:clear ()
997955
"Clear diff information in gutter."
998956
(interactive)
@@ -1178,6 +1136,7 @@ start revision."
11781136
(- (git-gutter-hunk-end-line hunk)
11791137
(git-gutter-hunk-start-line hunk))))))
11801138

1139+
# FIXME: This does not work as advertised.
11811140
(defun git-gutter:statistic ()
11821141
"Return statistic unstaged hunks in current buffer."
11831142
(interactive)

0 commit comments

Comments
 (0)