Replies: 1 comment 5 replies
-
The problem here is that difftastic includes its own pager and it does not seem possible to disable it. When difftastic's builtin pager is combined with A work-around is to use diff:
command: difft
args:
- --color
- always
- --missing-as-empty
- --skip-unchanged
pager: cat
Scripts are included in the diff output (unless you explicitly exclude them by setting |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
~/.config/chezmoi/chezmoi.yaml
file source:But this config doesn't use pager, and if I add next line to config (or if I use
--pager
option):then pager show no diff, or partial diff if I use
less -X
instead ofless
.Btw, diff program doesn't see scripts like
run_after_blablabla.sh
. If I specifyecho
instead ofdifft
, then I won't see the scripts.Additional info:
difft
is difftasticBeta Was this translation helpful? Give feedback.
All reactions