Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/Custom_DiffRenderers.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Fields only for `extDiff`:

Fields only for `rawGit`:

- **args** The additional arguments to use in the `git diff` or `git show` call (e.g. `--color-words`)
- **args** The array of additional arguments to use in the `git diff` or `git show` call (e.g. `--color-words`)

Here's an example for a multi-renderer setup:

Expand All @@ -40,7 +40,8 @@ git:
- type: extDiff
command: difft --color=always --context={{diffContext}}
- type: rawGit
args: --color-words
args:
- --color-words
name: color-words
- type: rawGit # git's default diff
name: default
Expand Down