chore(tooltips): update json schema

This commit is contained in:
Jan De Dobbeleer 2021-06-13 19:41:56 +02:00 committed by Jan De Dobbeleer
parent fdebf28caa
commit 97a9916be0

View file

@ -1570,6 +1570,25 @@
"default": [],
"description": "https://ohmyposh.dev/docs/configure",
"items": { "$ref": "#/definitions/block" }
},
"tooltips": {
"type": "array",
"title": "Tooltip list, prompt elements to display based on context",
"description": "https://ohmyposh.dev/docs/beta#tooltips",
"default": [],
"items": {
"allOf": [{ "$ref": "#/definitions/segment" }],
"properties": {
"tips": {
"type": "array",
"title": "The commands for which you want the segment to show",
"items": {
"type": "string"
}
}
},
"required": ["tips"]
}
}
}
}