Last active
October 24, 2022 07:55
-
-
Save tptyphon/5cde2343efaa6e82234c3323e46f0ab0 to your computer and use it in GitHub Desktop.
Revisions
-
tptyphon revised this gist
Oct 24, 2022 . 2 changed files with 7893 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
tptyphon created this gist
Oct 24, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,89 @@ { "$schema": "http://json-schema.org/draft-06/schema#", "type": "object", "additionalProperties": { "$ref": "#/definitions/Welcome7Value" }, "definitions": { "Welcome7Value": { "type": "object", "additionalProperties": false, "properties": { "type": { "$ref": "#/definitions/Type" }, "color": { "type": "string" }, "extensions": { "type": "array", "items": { "type": "string" } }, "tm_scope": { "type": "string" }, "ace_mode": { "type": "string" }, "language_id": { "type": "integer" }, "aliases": { "type": "array", "items": { "type": "string" } }, "codemirror_mode": { "type": "string" }, "codemirror_mime_type": { "type": "string" }, "interpreters": { "type": "array", "items": { "type": "string" } }, "group": { "type": "string" }, "filenames": { "type": "array", "items": { "type": "string" } }, "wrap": { "type": "boolean" }, "fs_name": { "type": "string" }, "searchable": { "type": "boolean" } }, "required": [ "ace_mode", "language_id", "tm_scope", "type" ], "title": "Welcome7Value" }, "Type": { "type": "string", "enum": [ "programming", "data", "markup", "prose" ], "title": "Type" } } }