# HG changeset patch # User Tuomo Valkonen # Date 1589401150 18000 # Node ID b58153995e37855c0b58db82094eb803c5fc6c7f # Parent caaf16def7022dae2ff96da88139416357e7875e Fix: do not override default LaTeX language diff -r caaf16def702 -r b58153995e37 package.json --- a/package.json Wed May 13 14:58:30 2020 -0500 +++ b/package.json Wed May 13 15:19:10 2020 -0500 @@ -24,7 +24,7 @@ "contributes": { "languages": [ { - "id": "tex", + "id": "texplus", "aliases": [ "TeX+", "texplus" @@ -36,7 +36,7 @@ "configuration": "./languages/tex.json" }, { - "id": "latex", + "id": "latexplus", "aliases": [ "LaTeX+", "latexplus" @@ -49,12 +49,12 @@ ], "grammars": [ { - "language": "tex", + "language": "texplus", "scopeName": "text.tex", "path": "./syntaxes/TeX.tmLanguage.json" }, { - "language": "latex", + "language": "latexplus", "scopeName": "text.tex.latex", "path": "./syntaxes/LaTeX.tmLanguage.json", "embeddedLanguages": { @@ -80,7 +80,7 @@ "text.html.markdown" ], "embeddedLanguages": { - "meta.embedded.block.latex": "latex" + "meta.embedded.block.latex": "latexplus" } } ]