aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d2235b6..65c91b0 100644
--- a/Makefile
+++ b/Makefile
@@ -10,15 +10,15 @@ DIFFTESTS = $(patsubst %.md.md,%,$(wildcard test/*.md.md))
_which = $(shell command -v $1 >/dev/null 2>&1 && echo $1 $2)
DIFF_md = $(strip $(or \
- $(call _which,delta,--default-language md),\
+ $(call _which,delta,--paging never --default-language md),\
$(call _which,git,--no-pager diff --no-index),\
diff -u))
DIFF_html = $(strip $(or \
- $(call _which,delta,--default-language html),\
+ $(call _which,delta,--paging never --default-language html),\
$(call _which,git,--no-pager diff --no-index),\
diff -u))
DIFF_json = $(strip $(or \
- $(call _which,delta,--default-language json),\
+ $(call _which,delta,--paging never --default-language json),\
$(call _which,git,--no-pager diff --no-index),\
diff -u))