package.json

Fri, 29 May 2020 15:32:47 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Fri, 29 May 2020 15:32:47 -0500
changeset 24
7c7d9c0a314d
parent 16
238c7ce8fd49
child 17
7cdfbb977154
child 25
08aa7e744f79
permissions
-rw-r--r--

Support custom-defined `\reply` and `\XYreply` for discussion within todonotes.

{
    "name": "latex-syntax",
    "displayName": "latex-syntax",
    "description": "Rich LaTeX syntax highlighting (for use with Texlab)",
    "version": "0.0.5",
    "publisher": "vomout",
    "license": "MIT",
    "homepage": "https://tuomov.iki.fi/software/",
    "repository": {
      "type": "mercurial",
      "url": "https://tuomov.iki.fi/repos/latex-syntax/"
    },
    "engines": {
        "vscode": "^1.45.0"
    },
    "categories": [
        "Programming Languages"
    ],
    "keywords": [
        "latex",
        "tex",
        "bibtex"
    ],
    "contributes": {
        "languages": [
            {
                "id": "tex",
                "aliases": [
                    "TeX",
                    "texplus"
                ],
                "extensions": [
                    ".sty",
                    ".cls"
                ],
                "configuration": "./languages/tex.json"
            },
            {
                "id": "latex",
                "aliases": [
                    "LaTeX+",
                    "latexplus"
                ],
                "extensions": [
                    ".tex"
                ],
                "configuration": "./languages/latex.json"
            }
        ],
        "grammars": [
            {
                "language": "tex",
                "scopeName": "text.tex",
                "path": "./syntaxes/TeX.tmLanguage.json"
            },
            {
                "language": "latex",
                "scopeName": "text.tex.latex",
                "path": "./syntaxes/LaTeX.tmLanguage.json",
                "embeddedLanguages": {
                    "source.asymptote": "asymptote",
                    "source.cpp": "cpp",
                    "source.css": "css",
                    "source.dot": "dot",
                    "source.gnuplot": "gnuplot",
                    "text.html": "html",
                    "source.java": "java",
                    "source.js": "js",
                    "source.lua": "lua",
                    "source.python": "python",
                    "source.scala": "scala",
                    "text.xtml": "xtml",
                    "source.yaml": "yaml"
                }
            },
            {
                "scopeName": "markdown.latex.codeblock",
                "path": "./syntax/latexblock.json",
                "injectTo": [
                    "text.html.markdown"
                ],
                "embeddedLanguages": {
                    "meta.embedded.block.latex": "latex"
                }
            }
        ]
    }
}

mercurial