diff --git a/extensions/toml/.vscodeignore b/extensions/toml/.vscodeignore deleted file mode 100644 index e51fa33d1f062cd682a0134b3a121b232eb76329..0000000000000000000000000000000000000000 --- a/extensions/toml/.vscodeignore +++ /dev/null @@ -1,2 +0,0 @@ -test/** -OSSREADME.json \ No newline at end of file diff --git a/extensions/toml/OSSREADME.json b/extensions/toml/OSSREADME.json deleted file mode 100644 index 673abbe32e6c55e2c214b785c925d4a0d3a04bba..0000000000000000000000000000000000000000 --- a/extensions/toml/OSSREADME.json +++ /dev/null @@ -1,19 +0,0 @@ -// ATTENTION - THIS DIRECTORY CONTAINS THIRD PARTY OPEN SOURCE MATERIALS: - -[{ - "name": "textmate/toml.tmbundle", - "version": "0.0.0", - "license": "TextMate Bundle License", - "repositoryURL": "https://github.com/textmate/toml.tmbundle", - "licenseDetail": [ - "Copyright (c) https://github.com/infininight and https://github.com/mojombo", - "Permission to copy, use, modify, sell and distribute this", - "software is granted. This software is provided \"as is\" without", - "express or implied warranty, and with no claim as to its", - "suitability for any purpose", - "", - "An exception is made for files in readable text which contain their own license information, or files where an accompanying", - "file exists (in the same directory) with a “-license” suffix added to the base-name name of the original file, and an extension .", - "of txt, html, or similar. For example “tidy” is accompanied by “tidy-license.txt”." - ] -}] diff --git a/extensions/toml/language-configuration.json b/extensions/toml/language-configuration.json deleted file mode 100644 index 6d72774c545bb623627b444f43b04e04c86cdfa2..0000000000000000000000000000000000000000 --- a/extensions/toml/language-configuration.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "comments": { - "lineComment": "#", - }, - "brackets": [ - ["{", "}"], - ["[", "]"], - ["(", ")"] - ], - "autoClosingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"], - ["\"", "\""], - ["'", "'"], - ["\"\"\"", "\"\"\""] - ], - "surroundingPairs": [ - ["{", "}"], - ["[", "]"], - ["(", ")"], - ["\"", "\""], - ["'", "'"], - ["\"\"\"", "\"\"\""] - ] -} \ No newline at end of file diff --git a/extensions/toml/package.json b/extensions/toml/package.json deleted file mode 100644 index 8253290a55f495df2331b90878b15897ad93dc1b..0000000000000000000000000000000000000000 --- a/extensions/toml/package.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "toml", - "displayName": "%displayName%", - "description": "%description%", - "version": "1.0.0", - "publisher": "vscode", - "engines": { "vscode": "*" }, - "scripts": { - "update-grammar": "node ../../build/npm/update-grammar.js textmate/toml.tmbundle Syntaxes/TOML.tmLanguage ./syntaxes/toml.tmLanguage.json" - }, - "contributes": { - "languages": [{ - "id": "toml", - "aliases": ["Toml", "toml"], - "extensions": [".toml"], - "configuration": "./language-configuration.json" - }], - "grammars": [{ - "language": "toml", - "scopeName": "source.toml", - "path": "./syntaxes/toml.tmLanguage.json" - }] - } -} diff --git a/extensions/toml/package.nls.json b/extensions/toml/package.nls.json deleted file mode 100644 index 6dfd230353a7489a5ac83b77363cb62cd49ddb35..0000000000000000000000000000000000000000 --- a/extensions/toml/package.nls.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "displayName": "TOML Language Basics", - "description": "Provides syntax highlighting and bracket matching in TOML files." -} \ No newline at end of file diff --git a/extensions/toml/syntaxes/toml.tmLanguage.json b/extensions/toml/syntaxes/toml.tmLanguage.json deleted file mode 100644 index 8370e9c2e57740114c18931d12934652cbb38ad7..0000000000000000000000000000000000000000 --- a/extensions/toml/syntaxes/toml.tmLanguage.json +++ /dev/null @@ -1,351 +0,0 @@ -{ - "information_for_contributors": [ - "This file has been converted from https://github.com/textmate/toml.tmbundle/blob/master/Syntaxes/TOML.tmLanguage", - "If you want to provide a fix or improvement, please create a pull request against the original repository.", - "Once accepted there, we are happy to receive an update request." - ], - "version": "https://github.com/textmate/toml.tmbundle/commit/37c532ae892d2af2da76e05918af673efc1111a6", - "name": "TOML", - "scopeName": "source.toml", - "patterns": [ - { - "include": "#comments" - }, - { - "include": "#groups" - }, - { - "include": "#key_pair" - }, - { - "include": "#invalid" - } - ], - "repository": { - "comments": { - "begin": "(^[ \\t]+)?(?=#)", - "beginCaptures": { - "1": { - "name": "punctuation.whitespace.comment.leading.toml" - } - }, - "end": "(?!\\G)", - "patterns": [ - { - "begin": "#", - "beginCaptures": { - "0": { - "name": "punctuation.definition.comment.toml" - } - }, - "end": "\\n", - "name": "comment.line.number-sign.toml" - } - ] - }, - "groups": { - "patterns": [ - { - "captures": { - "1": { - "name": "punctuation.definition.section.begin.toml" - }, - "2": { - "patterns": [ - { - "match": "[^\\s.]+", - "name": "entity.name.section.toml" - } - ] - }, - "3": { - "name": "punctuation.definition.section.begin.toml" - } - }, - "match": "^\\s*(\\[)([^\\[\\]]*)(\\])", - "name": "meta.group.toml" - }, - { - "captures": { - "1": { - "name": "punctuation.definition.section.begin.toml" - }, - "2": { - "patterns": [ - { - "match": "[^\\s.]+", - "name": "entity.name.section.toml" - } - ] - }, - "3": { - "name": "punctuation.definition.section.begin.toml" - } - }, - "match": "^\\s*(\\[\\[)([^\\[\\]]*)(\\]\\])", - "name": "meta.group.double.toml" - } - ] - }, - "invalid": { - "match": "\\S+(\\s*(?=\\S))?", - "name": "invalid.illegal.not-allowed-here.toml" - }, - "key_pair": { - "patterns": [ - { - "begin": "([A-Za-z0-9_-]+)\\s*(=)\\s*", - "captures": { - "1": { - "name": "variable.other.key.toml" - }, - "2": { - "name": "punctuation.separator.key-value.toml" - } - }, - "end": "(?<=\\S)(?