Merge pull request #4110 from drchsl/magit-improve-readme

tools/magit: add magit-diff-refine-hunk to readme
This commit is contained in:
Henrik Lissner 2020-10-18 19:10:03 -04:00 committed by GitHub
commit 99a850f607
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,7 @@
- [[#features][Features]]
- [[#configuration][Configuration]]
- [[#enable-gravatars][Enable Gravatars]]
- [[#enable-granular-diff-highlights-for-all-hunks][Enable granular diff-highlights for all hunks]]
- [[#troubleshooting][Troubleshooting]]
* Description
@ -62,5 +63,16 @@ This will enable gravatars when viewing commits. The service used by default is
(setq magit-revision-show-gravatars '("^Author: " . "^Commit: "))
#+END_SRC
** Enable granular diff-highlights for all hunks
By default, changes are highlighted *linewise* for all but the selected hunk. This
has [[https://magit.vc/manual/magit/Performance.html][performance reasons]]. You can enable character-wise highlights for all
visible hunks with:
#+BEGIN_SRC emacs-lisp
(after! magit
(setq magit-diff-refine-hunk 'all))
#+END_SRC
* TODO Troubleshooting
# Common issues and their solution, or places to look for help.