branch: scratch/add-vdiff
commit 16eb80231c0db987b3f74163e5b7f825918a8ed8
Author: justbur <[email protected]>
Commit: justbur <[email protected]>
Update README
---
README.org | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/README.org b/README.org
index 17edc73..80993df 100644
--- a/README.org
+++ b/README.org
@@ -119,5 +119,16 @@ The current customization options and there defaults are
;; For more information see
;;
https://www.gnu.org/software/emacs/manual/html_node/elisp/Syntax-Class-Table.html
(setq vdiff-default-refinement-syntax-code "w")
+
+ ;; How to represent subtractions (i.e., deleted lines). The
+ ;; default is full which means add the same number of (fake) lines
+ ;; as those that were removed. The choice single means add only one
+ ;; fake line. The choice fringe means don't add lines but do
+ ;; indicate the subtraction location in the fringe.
+ (setq vdiff-subtraction-style 'full)
+
+ ;; Character to use for filling subtraction lines. See also
+ ;; `vdiff-subtraction-style'.
+ (setq vdiff-subtraction-fill-char ?-)
#+END_SRC