]> code.delx.au - gnu-emacs-elpa/commitdiff
Close #5
authorDmitry Gutov <dgutov@yandex.ru>
Sat, 16 Mar 2013 05:25:21 +0000 (09:25 +0400)
committerDmitry Gutov <dgutov@yandex.ru>
Sat, 16 Mar 2013 05:25:21 +0000 (09:25 +0400)
README.md

index 8a391107928dc063d3c3388583d0fae7ebec2260..b933b176c645da1b8a89e64b2dd778e3423bf6ac 100644 (file)
--- a/README.md
+++ b/README.md
@@ -34,3 +34,19 @@ Notes
 * [git-gutter](https://github.com/syohex/emacs-git-gutter) provides interactive\r
   commands to show/hide/toggle margin indicators for the same information, and\r
   allows you to customize how the indicators look.\r
+\r
+Integration\r
+=====\r
+\r
+If you're using some package other than `vc` to commit changes, it might\r
+not run `vc-checkin-hook` after commits. In that case, you'll need to\r
+either add `diff-hl-update` to the hook it does run, or advise some\r
+function that's called in the buffer after its state has changed.\r
+\r
+psvn\r
+-----\r
+\r
+```lisp\r
+(defadvice svn-status-update-modeline (after svn-update-diff-hl activate)\r
+  (diff-hl-update))\r
+```\r