From 88eba5660746e3caba334402398a66d340321ee6 Mon Sep 17 00:00:00 2001 From: Jesse Vermeulen <43927190+JesseVermeulen123@users.noreply.github.com> Date: Tue, 27 Oct 2020 17:40:40 +0100 Subject: [PATCH] Add git diff example to Integration docs Part of https://github.com/sharkdp/bat/issues/448 Thanks to https://github.com/sharkdp/bat/pull/940 --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b2f7e74f..ed33b2ea 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,13 @@ highlighting: git show v0.6.0:src/main.rs | bat -l rs ``` -Note that syntax highlighting within diffs is currently not supported. If you are looking for this, check out [`delta`](https://github.com/dandavison/delta). +#### `git diff` + +You can combine `bat` with `git diff` to view lines around code changes with proper syntax +highlighting: +```bash +git diff --name-only --diff-filter=d | xargs bat --diff +``` #### `xclip`