Skip to content

Instantly share code, notes, and snippets.

@tptyphon
Last active October 24, 2022 07:55
Show Gist options
  • Select an option

  • Save tptyphon/5cde2343efaa6e82234c3323e46f0ab0 to your computer and use it in GitHub Desktop.

Select an option

Save tptyphon/5cde2343efaa6e82234c3323e46f0ab0 to your computer and use it in GitHub Desktop.

Revisions

  1. tptyphon revised this gist Oct 24, 2022. 2 changed files with 7893 additions and 0 deletions.
    File renamed without changes.
    7,893 changes: 7,893 additions & 0 deletions languages.yml
    7,893 additions, 0 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
  2. tptyphon created this gist Oct 24, 2022.
    89 changes: 89 additions & 0 deletions json
    Original 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"
    }
    }
    }