From f83fb24087afaff1988aaf6e40a7cec91c9911c5 Mon Sep 17 00:00:00 2001 From: Laurent Nullens Date: Tue, 3 Aug 2021 07:58:59 +0200 Subject: [PATCH] chore: add branch_max_length to schema --- themes/schema.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/themes/schema.json b/themes/schema.json index 1715754c..6825fc8c 100644 --- a/themes/schema.json +++ b/themes/schema.json @@ -679,7 +679,13 @@ "$ref": "#/definitions/color" }, "behind_color": { "$ref": "#/definitions/color" }, - "ahead_color": { "$ref": "#/definitions/color" } + "ahead_color": { "$ref": "#/definitions/color" }, + "branch_max_length": { + "type": "integer", + "title": "Branch max length", + "description": "the max length for the displayed branch name where 0 implies full length", + "default": 0 + } } } }