]> code.delx.au - gnu-emacs-elpa/blob - diff-hl.el
258e48ace198882e4da11cb850dfb85632b92924
[gnu-emacs-elpa] / diff-hl.el
1 ;;; diff-hl.el --- Highlight uncommitted changes -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2012-2014 Free Software Foundation, Inc.
4
5 ;; Author: Dmitry Gutov <dgutov@yandex.ru>
6 ;; URL: https://github.com/dgutov/diff-hl
7 ;; Keywords: vc, diff
8 ;; Version: 1.6.0
9 ;; Package-Requires: ((cl-lib "0.2"))
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;; `diff-hl-mode' highlights uncommitted changes on the left side of
29 ;; the window (using the fringe, by default), allows you to jump
30 ;; between the hunks and revert them selectively.
31
32 ;; Provided commands:
33 ;;
34 ;; `diff-hl-diff-goto-hunk' C-x v =
35 ;; `diff-hl-revert-hunk' C-x v n
36 ;; `diff-hl-previous-hunk' C-x v [
37 ;; `diff-hl-next-hunk' C-x v ]
38 ;;
39 ;; The mode takes advantage of `smartrep' if it is installed.
40
41 ;; Add either of the following to your init file.
42 ;;
43 ;; To use it in all buffers:
44 ;;
45 ;; (global-diff-hl-mode)
46 ;;
47 ;; Only in `prog-mode' buffers, with `vc-dir' integration:
48 ;;
49 ;; (add-hook 'prog-mode-hook 'turn-on-diff-hl-mode)
50 ;; (add-hook 'vc-dir-mode-hook 'turn-on-diff-hl-mode)
51
52 ;;; Code:
53
54 (require 'fringe)
55 (require 'diff-mode)
56 (require 'vc)
57 (require 'vc-dir)
58 (eval-when-compile
59 (require 'cl-lib)
60 (require 'vc-git)
61 (require 'vc-hg)
62 (require 'face-remap))
63
64 (defgroup diff-hl nil
65 "VC diff highlighting on the side of a window"
66 :group 'vc)
67
68 (defface diff-hl-insert
69 '((default :inherit diff-added)
70 (((class color)) :foreground "green4"))
71 "Face used to highlight inserted lines."
72 :group 'diff-hl)
73
74 (defface diff-hl-delete
75 '((default :inherit diff-removed)
76 (((class color)) :foreground "red3"))
77 "Face used to highlight deleted lines."
78 :group 'diff-hl)
79
80 (defface diff-hl-change
81 '((default :foreground "blue3")
82 (((class color) (min-colors 88) (background light))
83 :background "#ddddff")
84 (((class color) (min-colors 88) (background dark))
85 :background "#333355"))
86 "Face used to highlight changed lines."
87 :group 'diff-hl)
88
89 (defcustom diff-hl-command-prefix (kbd "C-x v")
90 "The prefix for all `diff-hl' commands."
91 :group 'diff-hl
92 :type 'string)
93
94 (defcustom diff-hl-draw-borders t
95 "Non-nil to draw borders around fringe indicators."
96 :group 'diff-hl
97 :type 'boolean)
98
99 (defcustom diff-hl-highlight-function 'diff-hl-highlight-on-fringe
100 "Function to highlight the current line. Its arguments are
101 overlay, change type and position within a hunk."
102 :group 'diff-hl
103 :type 'function)
104
105 (defcustom diff-hl-fringe-bmp-function 'diff-hl-fringe-bmp-from-pos
106 "Function to choose the fringe bitmap for a given change type
107 and position within a hunk. Should accept two arguments."
108 :group 'diff-hl
109 :type '(choice (const diff-hl-fringe-bmp-from-pos)
110 (const diff-hl-fringe-bmp-from-type)
111 function))
112
113 (defcustom diff-hl-fringe-face-function 'diff-hl-fringe-face-from-type
114 "Function to choose the fringe face for a given change type
115 and position within a hunk. Should accept two arguments."
116 :group 'diff-hl
117 :type 'function)
118
119 (defvar diff-hl-reference-revision nil
120 "Revision to diff against. nil means the most recent one.")
121
122 (defun diff-hl-define-bitmaps ()
123 (let* ((scale (if (and (boundp 'text-scale-mode-amount)
124 (numberp text-scale-mode-amount))
125 (expt text-scale-mode-step text-scale-mode-amount)
126 1))
127 (spacing (or (and (display-graphic-p) (default-value 'line-spacing)) 0))
128 (h (+ (ceiling (* (frame-char-height) scale))
129 (if (floatp spacing)
130 (truncate (* (frame-char-height) spacing))
131 spacing)))
132 (w (frame-parameter nil 'left-fringe))
133 (middle (make-vector h (expt 2 (1- w))))
134 (ones (1- (expt 2 w)))
135 (top (copy-sequence middle))
136 (bottom (copy-sequence middle))
137 (single (copy-sequence middle)))
138 (aset top 0 ones)
139 (aset bottom (1- h) ones)
140 (aset single 0 ones)
141 (aset single (1- h) ones)
142 (define-fringe-bitmap 'diff-hl-bmp-top top h w 'top)
143 (define-fringe-bitmap 'diff-hl-bmp-middle middle h w 'center)
144 (define-fringe-bitmap 'diff-hl-bmp-bottom bottom h w 'bottom)
145 (define-fringe-bitmap 'diff-hl-bmp-single single h w 'top)
146 (let* ((w2 (* (/ w 2) 2))
147 (delete-row (- (expt 2 (1- w2)) 2))
148 (middle-pos (1- (/ w2 2)))
149 (middle-bit (expt 2 middle-pos))
150 (insert-bmp (make-vector w2 (* 3 middle-bit))))
151 (define-fringe-bitmap 'diff-hl-bmp-delete (make-vector 2 delete-row) w2 w2)
152 (aset insert-bmp 0 0)
153 (aset insert-bmp middle-pos delete-row)
154 (aset insert-bmp (1+ middle-pos) delete-row)
155 (aset insert-bmp (1- w2) 0)
156 (define-fringe-bitmap 'diff-hl-bmp-insert insert-bmp w2 w2)
157 )))
158
159 (defun diff-hl-maybe-define-bitmaps ()
160 (when (window-system) ;; No fringes in the console.
161 (unless (fringe-bitmap-p 'diff-hl-bmp-empty)
162 (diff-hl-define-bitmaps)
163 (define-fringe-bitmap 'diff-hl-bmp-empty [0] 1 1 'center))))
164
165 (defvar diff-hl-spec-cache (make-hash-table :test 'equal))
166
167 (defun diff-hl-fringe-spec (type pos)
168 (let* ((key (list type pos diff-hl-fringe-bmp-function))
169 (val (gethash key diff-hl-spec-cache)))
170 (unless val
171 (let* ((face-sym (funcall diff-hl-fringe-face-function type pos))
172 (bmp-sym (funcall diff-hl-fringe-bmp-function type pos)))
173 (setq val (propertize " " 'display `((left-fringe ,bmp-sym ,face-sym))))
174 (puthash key val diff-hl-spec-cache)))
175 val))
176
177 (defun diff-hl-fringe-face-from-type (type _pos)
178 (intern (format "diff-hl-%s" type)))
179
180 (defun diff-hl-fringe-bmp-from-pos (_type pos)
181 (intern (format "diff-hl-bmp-%s" pos)))
182
183 (defun diff-hl-fringe-bmp-from-type (type _pos)
184 (cl-case type
185 (unknown 'question-mark)
186 (change 'exclamation-mark)
187 (t (intern (format "diff-hl-bmp-%s" type)))))
188
189 (defvar vc-svn-diff-switches)
190
191 (defmacro diff-hl-with-diff-switches (body)
192 `(let ((vc-git-diff-switches nil)
193 (vc-hg-diff-switches nil)
194 (vc-svn-diff-switches nil)
195 (vc-diff-switches '("-U0"))
196 (vc-disable-async-diff t))
197 ,body))
198
199 (defun diff-hl-changes ()
200 (let* ((file buffer-file-name)
201 (backend (vc-backend file)))
202 (when backend
203 (let ((state (vc-state file backend)))
204 (cond
205 ((or (eq state 'edited)
206 (and (eq state 'up-to-date)
207 ;; VC state is stale in after-revert-hook.
208 (or revert-buffer-in-progress-p
209 ;; Diffing against an older revision.
210 diff-hl-reference-revision)))
211 (let* ((buf-name " *diff-hl* ")
212 diff-auto-refine-mode
213 res)
214 (diff-hl-with-diff-switches
215 (vc-call-backend backend 'diff (list file)
216 diff-hl-reference-revision nil
217 buf-name))
218 (with-current-buffer buf-name
219 (goto-char (point-min))
220 (unless (eobp)
221 (diff-beginning-of-hunk t)
222 (while (looking-at diff-hunk-header-re-unified)
223 (let ((line (string-to-number (match-string 3)))
224 (len (let ((m (match-string 4)))
225 (if m (string-to-number m) 1)))
226 (beg (point)))
227 (diff-end-of-hunk)
228 (let* ((inserts (diff-count-matches "^\\+" beg (point)))
229 (deletes (diff-count-matches "^-" beg (point)))
230 (type (cond ((zerop deletes) 'insert)
231 ((zerop inserts) 'delete)
232 (t 'change))))
233 (when (eq type 'delete)
234 (setq len 1)
235 (cl-incf line))
236 (push (list line len type) res))))))
237 (nreverse res)))
238 ((eq state 'added)
239 `((1 ,(line-number-at-pos (point-max)) insert)))
240 ((eq state 'removed)
241 `((1 ,(line-number-at-pos (point-max)) delete))))))))
242
243 (defun diff-hl-update ()
244 (let ((changes (diff-hl-changes))
245 (current-line 1))
246 (diff-hl-remove-overlays)
247 (save-excursion
248 (goto-char (point-min))
249 (dolist (c changes)
250 (cl-destructuring-bind (line len type) c
251 (forward-line (- line current-line))
252 (setq current-line line)
253 (let ((hunk-beg (point)))
254 (while (cl-plusp len)
255 (diff-hl-add-highlighting
256 type
257 (cond
258 ((not diff-hl-draw-borders) 'empty)
259 ((and (= len 1) (= line current-line)) 'single)
260 ((= len 1) 'bottom)
261 ((= line current-line) 'top)
262 (t 'middle)))
263 (forward-line 1)
264 (cl-incf current-line)
265 (cl-decf len))
266 (let ((h (make-overlay hunk-beg (point)))
267 (hook '(diff-hl-overlay-modified)))
268 (overlay-put h 'diff-hl t)
269 (overlay-put h 'diff-hl-hunk t)
270 (overlay-put h 'modification-hooks hook)
271 (overlay-put h 'insert-in-front-hooks hook)
272 (overlay-put h 'insert-behind-hooks hook))))))))
273
274 (defun diff-hl-add-highlighting (type shape)
275 (let ((o (make-overlay (point) (point))))
276 (overlay-put o 'diff-hl t)
277 (funcall diff-hl-highlight-function o type shape)
278 o))
279
280 (defun diff-hl-highlight-on-fringe (ovl type shape)
281 (overlay-put ovl 'before-string (diff-hl-fringe-spec type shape)))
282
283 (defun diff-hl-remove-overlays ()
284 (dolist (o (overlays-in (point-min) (point-max)))
285 (when (overlay-get o 'diff-hl) (delete-overlay o))))
286
287 (defun diff-hl-overlay-modified (ov after-p _beg _end &optional _length)
288 "Delete the hunk overlay and all our line overlays inside it."
289 (unless after-p
290 (when (overlay-buffer ov)
291 (save-restriction
292 (narrow-to-region (overlay-start ov) (overlay-end ov))
293 (diff-hl-remove-overlays))
294 (delete-overlay ov))))
295
296 (defvar diff-hl-timer nil)
297
298 (defun diff-hl-edit (_beg _end _len)
299 "DTRT when we've `undo'-ne the buffer into unmodified state."
300 (when undo-in-progress
301 (when diff-hl-timer
302 (cancel-timer diff-hl-timer))
303 (setq diff-hl-timer
304 (run-with-idle-timer 0.01 nil #'diff-hl-after-undo (current-buffer)))))
305
306 (defun diff-hl-after-undo (buffer)
307 (with-current-buffer buffer
308 (unless (buffer-modified-p)
309 (diff-hl-update))))
310
311 (defun diff-hl-diff-goto-hunk ()
312 "Run VC diff command and go to the line corresponding to the current."
313 (interactive)
314 (vc-buffer-sync)
315 (let* ((line (line-number-at-pos))
316 (buffer (current-buffer)))
317 (vc-diff-internal t (vc-deduce-fileset) diff-hl-reference-revision nil t)
318 (vc-exec-after `(if (< (line-number-at-pos (point-max)) 3)
319 (with-current-buffer ,buffer (diff-hl-remove-overlays))
320 (diff-hl-diff-skip-to ,line)
321 (setq vc-sentinel-movepoint (point))))))
322
323 (defun diff-hl-diff-skip-to (line)
324 "In `diff-mode', skip to the hunk and line corresponding to LINE
325 in the source file, or the last line of the hunk above it."
326 (diff-hunk-next)
327 (let (found)
328 (while (and (looking-at diff-hunk-header-re-unified) (not found))
329 (let ((hunk-line (string-to-number (match-string 3)))
330 (len (let ((m (match-string 4)))
331 (if m (string-to-number m) 1))))
332 (if (> line (+ hunk-line len))
333 (diff-hunk-next)
334 (setq found t)
335 (if (< line hunk-line)
336 ;; Retreat to the previous hunk.
337 (forward-line -1)
338 (let ((to-go (1+ (- line hunk-line))))
339 (while (cl-plusp to-go)
340 (forward-line 1)
341 (unless (looking-at "^-")
342 (cl-decf to-go))))))))))
343
344 (defun diff-hl-revert-hunk ()
345 "Revert the diff hunk with changes at or above the point."
346 (interactive)
347 (vc-buffer-sync)
348 (let ((diff-buffer (generate-new-buffer-name "*diff-hl*"))
349 (buffer (current-buffer))
350 (line (save-excursion
351 (unless (diff-hl-hunk-overlay-at (point))
352 (diff-hl-previous-hunk))
353 (line-number-at-pos)))
354 (fileset (vc-deduce-fileset)))
355 (unwind-protect
356 (progn
357 (vc-diff-internal nil fileset diff-hl-reference-revision nil
358 nil diff-buffer)
359 (vc-exec-after
360 `(let (beg-line end-line)
361 (when (eobp)
362 (with-current-buffer ,buffer (diff-hl-remove-overlays))
363 (error "Buffer is up-to-date"))
364 (diff-hl-diff-skip-to ,line)
365 (save-excursion
366 (while (looking-at "[-+]") (forward-line 1))
367 (setq end-line (line-number-at-pos (point)))
368 (unless (eobp) (diff-split-hunk)))
369 (unless (looking-at "[-+]") (forward-line -1))
370 (while (looking-at "[-+]") (forward-line -1))
371 (setq beg-line (line-number-at-pos (point)))
372 (unless (looking-at "@")
373 (forward-line 1)
374 (diff-split-hunk))
375 (let ((wbh (window-body-height)))
376 (if (>= wbh (- end-line beg-line))
377 (recenter (/ (+ wbh (- beg-line end-line) 2) 2))
378 (recenter 1)))
379 (unless (yes-or-no-p (format "Revert current hunk in %s?"
380 ,(cl-caadr fileset)))
381 (error "Revert canceled"))
382 (let ((diff-advance-after-apply-hunk nil))
383 (diff-apply-hunk t))
384 (with-current-buffer ,buffer
385 (save-buffer))
386 (message "Hunk reverted"))))
387 (quit-windows-on diff-buffer))))
388
389 (defun diff-hl-hunk-overlay-at (pos)
390 (cl-loop for o in (overlays-in pos (1+ pos))
391 when (overlay-get o 'diff-hl-hunk)
392 return o))
393
394 (defun diff-hl-next-hunk (&optional backward)
395 "Go to the beginning of the next hunk in the current buffer."
396 (interactive)
397 (let ((pos (save-excursion
398 (catch 'found
399 (while (not (if backward (bobp) (eobp)))
400 (goto-char (if backward
401 (previous-overlay-change (point))
402 (next-overlay-change (point))))
403 (let ((o (diff-hl-hunk-overlay-at (point))))
404 (when (and o (= (overlay-start o) (point)))
405 (throw 'found (overlay-start o)))))))))
406 (if pos
407 (goto-char pos)
408 (error "No further hunks found"))))
409
410 (defun diff-hl-previous-hunk ()
411 "Go to the beginning of the previous hunk in the current buffer."
412 (interactive)
413 (diff-hl-next-hunk t))
414
415 (define-prefix-command 'diff-hl-command-map)
416
417 (let ((map diff-hl-command-map))
418 (define-key map "n" 'diff-hl-revert-hunk)
419 (define-key map "[" 'diff-hl-previous-hunk)
420 (define-key map "]" 'diff-hl-next-hunk)
421 map)
422
423 ;;;###autoload
424 (define-minor-mode diff-hl-mode
425 "Toggle VC diff highlighting."
426 :lighter "" :keymap `(([remap vc-diff] . diff-hl-diff-goto-hunk)
427 (,diff-hl-command-prefix . diff-hl-command-map))
428 (if diff-hl-mode
429 (progn
430 (diff-hl-maybe-define-bitmaps)
431 (add-hook 'after-save-hook 'diff-hl-update nil t)
432 (add-hook 'after-change-functions 'diff-hl-edit nil t)
433 (add-hook (if vc-mode
434 ;; Defer until the end of this hook, so that its
435 ;; elements can modify the update behavior.
436 'diff-hl-mode-on-hook
437 ;; If we're only opening the file now,
438 ;; `vc-find-file-hook' likely hasn't run yet, so
439 ;; let's wait until the state information is
440 ;; saved, in order not to fetch it twice.
441 'find-file-hook)
442 'diff-hl-update t t)
443 (add-hook 'vc-checkin-hook 'diff-hl-update nil t)
444 (add-hook 'after-revert-hook 'diff-hl-update nil t)
445 ;; Magit does call `auto-revert-handler', but it usually
446 ;; doesn't do much, because `buffer-stale--default-function'
447 ;; doesn't care about changed VC state.
448 ;; https://github.com/magit/magit/issues/603
449 (add-hook 'magit-revert-buffer-hook 'diff-hl-update nil t)
450 (add-hook 'text-scale-mode-hook 'diff-hl-define-bitmaps nil t))
451 (remove-hook 'after-save-hook 'diff-hl-update t)
452 (remove-hook 'after-change-functions 'diff-hl-edit t)
453 (remove-hook 'find-file-hook 'diff-hl-update t)
454 (remove-hook 'vc-checkin-hook 'diff-hl-update t)
455 (remove-hook 'after-revert-hook 'diff-hl-update t)
456 (remove-hook 'magit-revert-buffer-hook 'diff-hl-update t)
457 (remove-hook 'text-scale-mode-hook 'diff-hl-define-bitmaps t)
458 (diff-hl-remove-overlays)))
459
460 (when (require 'smartrep nil t)
461 (let (smart-keys)
462 (cl-labels ((scan (map)
463 (map-keymap
464 (lambda (event binding)
465 (if (consp binding)
466 (scan binding)
467 (when (characterp event)
468 (push (cons (string event) binding) smart-keys))))
469 map)))
470 (scan diff-hl-command-map)
471 (smartrep-define-key diff-hl-mode-map diff-hl-command-prefix smart-keys))))
472
473 (defun diff-hl-dir-update ()
474 (dolist (pair (if (vc-dir-marked-files)
475 (vc-dir-marked-only-files-and-states)
476 (vc-dir-child-files-and-states)))
477 (when (eq 'up-to-date (cdr pair))
478 (let ((buffer (find-buffer-visiting (car pair))))
479 (when buffer
480 (with-current-buffer buffer
481 (diff-hl-remove-overlays)))))))
482
483 (define-minor-mode diff-hl-dir-mode
484 "Toggle `diff-hl-mode' integration in a `vc-dir-mode' buffer."
485 :lighter ""
486 (if diff-hl-dir-mode
487 (add-hook 'vc-checkin-hook 'diff-hl-dir-update t t)
488 (remove-hook 'vc-checkin-hook 'diff-hl-dir-update t)))
489
490 ;;;###autoload
491 (defun turn-on-diff-hl-mode ()
492 "Turn on `diff-hl-mode' or `diff-hl-dir-mode' in a buffer if appropriate."
493 (cond
494 (buffer-file-name
495 (diff-hl-mode 1))
496 ((eq major-mode 'vc-dir-mode)
497 (diff-hl-dir-mode 1))))
498
499 ;;;###autoload
500 (define-globalized-minor-mode global-diff-hl-mode diff-hl-mode
501 turn-on-diff-hl-mode :after-hook (diff-hl-global-mode-change))
502
503 (defun diff-hl-global-mode-change ()
504 (unless global-diff-hl-mode
505 (dolist (buf (buffer-list))
506 (with-current-buffer buf
507 (when diff-hl-dir-mode
508 (diff-hl-dir-mode -1))))))
509
510 (provide 'diff-hl)
511
512 ;;; diff-hl.el ends here