ok/jj
1
0
Fork 0
forked from mirrors/jj

doc: include diff format in config schema

This commit is contained in:
Martin von Zweigbergk 2023-02-05 22:55:15 -08:00 committed by Martin von Zweigbergk
parent 9cdc202b39
commit 74bff5c916

View file

@ -71,6 +71,17 @@
"description": "Pager to use for displaying command output",
"default": "less -FRX"
},
"diff": {
"type": "object",
"description": "Options for how diffs are displayed",
"properties": {
"format": {
"description": "The diff format to use",
"enum": ["color-words", "git", "summary"],
"default": "color-words"
}
}
},
"graph": {
"type": "object",
"description": "Options for rendering revision graphs from jj log etc",