diff --git a/.vscode/launch.json b/.vscode/launch.json
index bc148b2186..647bc7f687 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -70,12 +70,10 @@
"timeout": 20000
},
"osx": {
- "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh",
- "timeout": 20000
+ "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh"
},
"linux": {
- "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh",
- "timeout": 20000
+ "runtimeExecutable": "${workspaceFolder}/scripts/sql.sh"
},
"env": {
"VSCODE_EXTHOST_WILL_SEND_SOCKET": null
@@ -93,6 +91,9 @@
"request": "launch",
"name": "Launch ADS (Main Process)",
"runtimeExecutable": "${workspaceFolder}/scripts/sql.sh",
+ "windows": {
+ "runtimeExecutable": "${workspaceFolder}/scripts/sql.bat",
+ },
"runtimeArgs": [
"--no-cached-data"
],
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 666092355a..3fa04b1ee9 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,6 +1,5 @@
{
"editor.insertSpaces": false,
- "files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.exclude": {
".git": true,
@@ -40,7 +39,6 @@
],
"typescript.tsdk": "node_modules/typescript/lib",
"npm.exclude": "**/extensions/**",
- "git.ignoreLimitWarning": true,
"emmet.excludeLanguages": [],
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.quoteStyle": "single",
diff --git a/build/azure-pipelines/darwin/continuous-build-darwin.yml b/build/azure-pipelines/darwin/continuous-build-darwin.yml
index c964214ca3..fcbd3c3037 100644
--- a/build/azure-pipelines/darwin/continuous-build-darwin.yml
+++ b/build/azure-pipelines/darwin/continuous-build-darwin.yml
@@ -10,12 +10,6 @@ steps:
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
inputs:
versionSpec: "1.10.1"
-# - task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
-# inputs:
-# keyfile: '**/yarn.lock, !**/node_modules/**/yarn.lock, !**/.*/**/yarn.lock'
-# targetfolder: '**/node_modules, !**/node_modules/**/node_modules'
-# vstsFeed: '$(ArtifactFeed)'
-# condition: eq(variables['System.PullRequest.PullRequestId'], '')
- script: |
yarn --frozen-lockfile
displayName: Install Dependencies
diff --git a/build/azure-pipelines/linux/continuous-build-linux.yml b/build/azure-pipelines/linux/continuous-build-linux.yml
index b861eb697a..997dceb9a4 100644
--- a/build/azure-pipelines/linux/continuous-build-linux.yml
+++ b/build/azure-pipelines/linux/continuous-build-linux.yml
@@ -18,12 +18,6 @@ steps:
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
inputs:
versionSpec: "1.10.1"
-# - task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
-# inputs:
-# keyfile: '**/yarn.lock, !**/node_modules/**/yarn.lock, !**/.*/**/yarn.lock'
-# targetfolder: '**/node_modules, !**/node_modules/**/node_modules'
-# vstsFeed: '$(ArtifactFeed)'
-# condition: eq(variables['System.PullRequest.PullRequestId'], '')
- script: |
yarn --frozen-lockfile
displayName: Install Dependencies
diff --git a/build/gulpfile.vscode.win32.js b/build/gulpfile.vscode.win32.js
index a9605cd17c..8cd68d5361 100644
--- a/build/gulpfile.vscode.win32.js
+++ b/build/gulpfile.vscode.win32.js
@@ -27,7 +27,7 @@ const zipPath = arch => path.join(zipDir(arch), `VSCode-win32-${arch}.zip`);
const setupDir = (arch, target) => path.join(repoPath, '.build', `win32-${arch}`, `${target}-setup`);
const issPath = path.join(__dirname, 'win32', 'code.iss');
const innoSetupPath = path.join(path.dirname(path.dirname(require.resolve('innosetup'))), 'bin', 'ISCC.exe');
-// const signPS1 = path.join(repoPath, 'build', 'azure-pipelines', 'win32', 'sign.ps1');
+const signPS1 = path.join(repoPath, 'build', 'azure-pipelines', 'win32', 'sign.ps1');
function packageInnoSetup(iss, options, cb) {
options = options || {};
@@ -49,9 +49,8 @@ function packageInnoSetup(iss, options, cb) {
const defs = keys.map(key => `/d${key}=${definitions[key]}`);
const args = [
iss,
- ...defs
- //,
- //`/sesrp=powershell.exe -ExecutionPolicy bypass ${signPS1} $f`
+ ...defs,
+ `/sesrp=powershell.exe -ExecutionPolicy bypass ${signPS1} $f`
];
cp.spawn(innoSetupPath, args, { stdio: ['ignore', 'inherit', 'inherit'] })
diff --git a/build/lib/optimize.js b/build/lib/optimize.js
index 52435e9051..3de6f74abf 100644
--- a/build/lib/optimize.js
+++ b/build/lib/optimize.js
@@ -60,7 +60,7 @@ function loader(src, bundledFileHeader, bundleLoader) {
isFirst = false;
this.emit('data', new VinylFile({
path: 'fake',
- base: undefined,
+ base: '',
contents: Buffer.from(bundledFileHeader)
}));
this.emit('data', data);
@@ -96,7 +96,7 @@ function toConcatStream(src, bundledFileHeader, sources, dest) {
}
const treatedSources = sources.map(function (source) {
const root = source.path ? REPO_ROOT_PATH.replace(/\\/g, '/') : '';
- const base = source.path ? root + `/${src}` : undefined;
+ const base = source.path ? root + `/${src}` : '';
return new VinylFile({
path: source.path ? root + '/' + source.path.replace(/\\/g, '/') : 'fake',
base: base,
diff --git a/build/lib/optimize.ts b/build/lib/optimize.ts
index 9c3612e2ce..54a7439985 100644
--- a/build/lib/optimize.ts
+++ b/build/lib/optimize.ts
@@ -74,7 +74,7 @@ function loader(src: string, bundledFileHeader: string, bundleLoader: boolean):
isFirst = false;
this.emit('data', new VinylFile({
path: 'fake',
- base: undefined,
+ base: '',
contents: Buffer.from(bundledFileHeader)
}));
this.emit('data', data);
@@ -114,7 +114,7 @@ function toConcatStream(src: string, bundledFileHeader: string, sources: bundle.
const treatedSources = sources.map(function (source) {
const root = source.path ? REPO_ROOT_PATH.replace(/\\/g, '/') : '';
- const base = source.path ? root + `/${src}` : undefined;
+ const base = source.path ? root + `/${src}` : '';
return new VinylFile({
path: source.path ? root + '/' + source.path.replace(/\\/g, '/') : 'fake',
diff --git a/build/package.json b/build/package.json
index ca4bacca00..535a99c2e8 100644
--- a/build/package.json
+++ b/build/package.json
@@ -31,10 +31,8 @@
"@types/xml2js": "0.0.33",
"applicationinsights": "1.0.6",
"azure-storage": "^2.1.0",
- "decompress": "^4.2.0",
"del": "^3.0.0",
"documentdb": "1.13.0",
- "fs-extra-promise": "^1.0.1",
"github-releases": "^0.4.1",
"gulp-bom": "^1.0.0",
"gulp-sourcemaps": "^1.11.0",
diff --git a/build/yarn.lock b/build/yarn.lock
index 2cba6cc19c..273527824c 100644
--- a/build/yarn.lock
+++ b/build/yarn.lock
@@ -545,11 +545,6 @@ bl@^1.0.0:
readable-stream "^2.3.5"
safe-buffer "^5.1.1"
-bluebird@^3.5.0:
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7"
- integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==
-
boolbase@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
@@ -1317,22 +1312,6 @@ fs-constants@^1.0.0:
resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
-fs-extra-promise@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/fs-extra-promise/-/fs-extra-promise-1.0.1.tgz#b6ed1ace97b10e06b95f458d051b7f05c6613ee6"
- integrity sha1-tu0azpexDga5X0WNBRt/BcZhPuY=
- dependencies:
- bluebird "^3.5.0"
- fs-extra "^2.1.2"
-
-fs-extra@^2.1.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35"
- integrity sha1-BGxwFjzvmq1GsOSn+kZ/si1x3jU=
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^2.1.0"
-
fs-minipass@^1.2.5:
version "1.2.5"
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
@@ -1440,7 +1419,7 @@ graceful-fs@4.X:
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
integrity sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=
-graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
+graceful-fs@^4.1.10, graceful-fs@^4.1.11:
version "4.1.15"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
@@ -1948,13 +1927,6 @@ json-stringify-safe@~5.0.1:
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
-jsonfile@^2.1.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
- integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
- optionalDependencies:
- graceful-fs "^4.1.6"
-
jsonify@~0.0.0:
version "0.0.0"
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
diff --git a/extensions/bat/test/colorize-results/test_bat.json b/extensions/bat/test/colorize-results/test_bat.json
index 3bdf9368d4..97155fafc8 100644
--- a/extensions/bat/test/colorize-results/test_bat.json
+++ b/extensions/bat/test/colorize-results/test_bat.json
@@ -3,10 +3,10 @@
"c": "@",
"t": "source.batchfile keyword.operator.at.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -14,10 +14,10 @@
"c": "echo",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -25,10 +25,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -36,10 +36,10 @@
"c": "off",
"t": "source.batchfile keyword.other.special-method.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -47,10 +47,10 @@
"c": "setlocal",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -58,10 +58,10 @@
"c": "title",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -69,10 +69,10 @@
"c": " VSCode Dev",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": "pushd",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -91,10 +91,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": "%",
"t": "source.batchfile punctuation.definition.variable.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -113,10 +113,10 @@
"c": "~dp0",
"t": "source.batchfile variable.parameter.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -124,10 +124,10 @@
"c": "\\..",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -135,10 +135,10 @@
"c": "::",
"t": "source.batchfile comment.line.colon.batchfile punctuation.definition.comment.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -146,10 +146,10 @@
"c": " Node modules",
"t": "source.batchfile comment.line.colon.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -157,10 +157,10 @@
"c": "if",
"t": "source.batchfile keyword.control.conditional.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -168,10 +168,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -179,10 +179,10 @@
"c": "not",
"t": "source.batchfile keyword.operator.logical.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -190,10 +190,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -201,10 +201,10 @@
"c": "exist",
"t": "source.batchfile keyword.other.special-method.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -212,10 +212,10 @@
"c": " node_modules ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -223,10 +223,10 @@
"c": "call",
"t": "source.batchfile keyword.control.statement.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -234,10 +234,10 @@
"c": " .\\scripts\\npm.bat install",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -245,10 +245,10 @@
"c": "::",
"t": "source.batchfile comment.line.colon.batchfile punctuation.definition.comment.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -256,10 +256,10 @@
"c": " Get electron",
"t": "source.batchfile comment.line.colon.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -267,10 +267,10 @@
"c": "node .\\node_modules\\gulp\\bin\\gulp.js electron",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -278,10 +278,10 @@
"c": "::",
"t": "source.batchfile comment.line.colon.batchfile punctuation.definition.comment.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -289,10 +289,10 @@
"c": " Build",
"t": "source.batchfile comment.line.colon.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -300,10 +300,10 @@
"c": "if",
"t": "source.batchfile keyword.control.conditional.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -311,10 +311,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -322,10 +322,10 @@
"c": "not",
"t": "source.batchfile keyword.operator.logical.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -333,10 +333,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -344,10 +344,10 @@
"c": "exist",
"t": "source.batchfile keyword.other.special-method.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -355,10 +355,10 @@
"c": " out node .\\node_modules\\gulp\\bin\\gulp.js compile",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -366,10 +366,10 @@
"c": "::",
"t": "source.batchfile comment.line.colon.batchfile punctuation.definition.comment.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -377,10 +377,10 @@
"c": " Configuration",
"t": "source.batchfile comment.line.colon.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -388,10 +388,10 @@
"c": "set",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -399,10 +399,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -410,10 +410,10 @@
"c": "NODE_ENV",
"t": "source.batchfile variable.other.readwrite.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -421,10 +421,10 @@
"c": "=",
"t": "source.batchfile keyword.operator.assignment.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -432,10 +432,10 @@
"c": "development",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -443,10 +443,10 @@
"c": "call",
"t": "source.batchfile keyword.control.statement.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -454,10 +454,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -465,10 +465,10 @@
"c": "echo",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -476,10 +476,10 @@
"c": " ",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -487,10 +487,10 @@
"c": "%%",
"t": "source.batchfile constant.character.escape.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.character.escape: #D7BA7D",
+ "light_plus": "constant.character.escape: #FF0000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "constant.character: #569CD6"
}
},
@@ -498,10 +498,10 @@
"c": "LINE:rem +=",
"t": "source.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -509,10 +509,10 @@
"c": "%%",
"t": "source.batchfile constant.character.escape.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.character.escape: #D7BA7D",
+ "light_plus": "constant.character.escape: #FF0000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "constant.character: #569CD6"
}
},
@@ -520,10 +520,10 @@
"c": "popd",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -531,10 +531,10 @@
"c": "endlocal",
"t": "source.batchfile keyword.command.batchfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
}
diff --git a/extensions/css-language-features/server/src/test/links.test.ts b/extensions/css-language-features/server/src/test/links.test.ts
deleted file mode 100644
index ff0aae4390..0000000000
--- a/extensions/css-language-features/server/src/test/links.test.ts
+++ /dev/null
@@ -1,79 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the Source EULA. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-import 'mocha';
-import * as assert from 'assert';
-import Uri from 'vscode-uri';
-import { resolve } from 'path';
-import { TextDocument, DocumentLink } from 'vscode-languageserver-types';
-import { WorkspaceFolder } from 'vscode-languageserver-protocol';
-import { getCSSLanguageService } from 'vscode-css-languageservice';
-import { getDocumentContext } from '../utils/documentContext';
-
-export interface ItemDescription {
- offset: number;
- value: string;
- target: string;
-}
-
-suite('Links', () => {
- const cssLanguageService = getCSSLanguageService();
-
- let assertLink = function (links: DocumentLink[], expected: ItemDescription, document: TextDocument) {
- let matches = links.filter(link => {
- return document.offsetAt(link.range.start) === expected.offset;
- });
-
- assert.equal(matches.length, 1, `${expected.offset} should only existing once: Actual: ${links.map(l => document.offsetAt(l.range.start)).join(', ')}`);
- let match = matches[0];
- assert.equal(document.getText(match.range), expected.value);
- assert.equal(match.target, expected.target);
- };
-
- function assertLinks(value: string, expected: ItemDescription[], testUri: string, workspaceFolders?: WorkspaceFolder[], lang: string = 'css'): void {
- const offset = value.indexOf('|');
- value = value.substr(0, offset) + value.substr(offset + 1);
-
- const document = TextDocument.create(testUri, lang, 0, value);
-
- if (!workspaceFolders) {
- workspaceFolders = [{ name: 'x', uri: testUri.substr(0, testUri.lastIndexOf('/')) }];
- }
-
- const context = getDocumentContext(testUri, workspaceFolders);
-
- const stylesheet = cssLanguageService.parseStylesheet(document);
- let links = cssLanguageService.findDocumentLinks(document, stylesheet, context)!;
-
- assert.equal(links.length, expected.length);
-
- for (let item of expected) {
- assertLink(links, item, document);
- }
- }
-
- function getTestResource(path: string) {
- return Uri.file(resolve(__dirname, '../../test/linksTestFixtures', path)).toString();
- }
-
- test('url links', function () {
-
- let testUri = getTestResource('about.css');
- let folders = [{ name: 'x', uri: getTestResource('') }];
-
- assertLinks('html { background-image: url("hello.html|")',
- [{ offset: 29, value: '"hello.html"', target: getTestResource('hello.html') }], testUri, folders
- );
- });
-
- test('node module resolving', function () {
-
- let testUri = getTestResource('about.css');
- let folders = [{ name: 'x', uri: getTestResource('') }];
-
- assertLinks('html { background-image: url("~foo/hello.html|")',
- [{ offset: 29, value: '"~foo/hello.html"', target: getTestResource('node_modules/foo/hello.html') }], testUri, folders
- );
- });
-});
\ No newline at end of file
diff --git a/extensions/css-language-features/server/test/linksTestFixtures/.gitignore b/extensions/css-language-features/server/test/linksTestFixtures/.gitignore
deleted file mode 100644
index d591cdfd50..0000000000
--- a/extensions/css-language-features/server/test/linksTestFixtures/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-!/node_modules
\ No newline at end of file
diff --git a/extensions/css-language-features/server/test/linksTestFixtures/node_modules/foo/package.json b/extensions/css-language-features/server/test/linksTestFixtures/node_modules/foo/package.json
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/extensions/debug-server-ready/.vscode/launch.json b/extensions/debug-server-ready/.vscode/launch.json
deleted file mode 100644
index 00d60a1219..0000000000
--- a/extensions/debug-server-ready/.vscode/launch.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Run Server Ready Extension",
- "type": "extensionHost",
- "request": "launch",
- "args": [
- "--extensionDevelopmentPath=${workspaceFolder}",
- ],
- "outFiles": [
- "${workspaceFolder}/out/**/*.js"
- ]
- }
- ]
-}
\ No newline at end of file
diff --git a/extensions/docker/test/colorize-results/Dockerfile.json b/extensions/docker/test/colorize-results/Dockerfile.json
index 1b29260acf..fcb2e004c1 100644
--- a/extensions/docker/test/colorize-results/Dockerfile.json
+++ b/extensions/docker/test/colorize-results/Dockerfile.json
@@ -3,10 +3,10 @@
"c": "FROM",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -14,10 +14,10 @@
"c": " ubuntu",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": "MAINTAINER",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -36,10 +36,10 @@
"c": " Kimbro Staken",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": "RUN",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -58,10 +58,10 @@
"c": " apt-get install -y software-properties-common python",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -69,10 +69,10 @@
"c": "RUN",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -80,10 +80,10 @@
"c": " add-apt-repository ppa:chris-lea/node.js",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -91,10 +91,10 @@
"c": "RUN",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -102,10 +102,10 @@
"c": " echo ",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -113,10 +113,10 @@
"c": "\"deb http://us.archive.ubuntu.com/ubuntu/ precise universe\"",
"t": "source.dockerfile string.quoted.double.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -124,10 +124,10 @@
"c": " >> /etc/apt/sources.list",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -135,10 +135,10 @@
"c": "RUN",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -146,10 +146,10 @@
"c": " apt-get update",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "RUN",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -168,10 +168,10 @@
"c": " apt-get install -y nodejs",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -179,10 +179,10 @@
"c": "#",
"t": "source.dockerfile comment.line.number-sign.dockerfile punctuation.definition.comment.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -190,10 +190,10 @@
"c": "RUN apt-get install -y nodejs=0.6.12~dfsg1-1ubuntu1",
"t": "source.dockerfile comment.line.number-sign.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -201,10 +201,10 @@
"c": "RUN",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -212,10 +212,10 @@
"c": " mkdir /var/www",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -223,10 +223,10 @@
"c": "ADD",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -234,10 +234,10 @@
"c": " app.js /var/www/app.js",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -245,10 +245,10 @@
"c": "CMD",
"t": "source.dockerfile keyword.other.special-method.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -256,10 +256,10 @@
"c": " [",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": "\"/usr/bin/node\"",
"t": "source.dockerfile string.quoted.double.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -278,10 +278,10 @@
"c": ", ",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -289,10 +289,10 @@
"c": "\"/var/www/app.js\"",
"t": "source.dockerfile string.quoted.double.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -300,10 +300,10 @@
"c": "] ",
"t": "source.dockerfile",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
}
diff --git a/extensions/git/test/colorize-results/COMMIT_EDITMSG.json b/extensions/git/test/colorize-results/COMMIT_EDITMSG.json
index 8b8c3318e7..508e3ee199 100644
--- a/extensions/git/test/colorize-results/COMMIT_EDITMSG.json
+++ b/extensions/git/test/colorize-results/COMMIT_EDITMSG.json
@@ -3,10 +3,10 @@
"c": "This is the summary line. It can't be too long.",
"t": "text.git-commit meta.scope.message.git-commit meta.scope.subject.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -14,10 +14,10 @@
"c": "After I can write a much more detailed description without quite the same restrictions on length.",
"t": "text.git-commit meta.scope.message.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -36,10 +36,10 @@
"c": " Please enter the commit message for your changes. Lines starting",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -47,10 +47,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -58,10 +58,10 @@
"c": " with '#' will be ignored, and an empty message aborts the commit.",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -69,10 +69,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -80,10 +80,10 @@
"c": " On branch master",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -91,10 +91,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -102,10 +102,10 @@
"c": " Your branch is up-to-date with 'origin/master'.",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -113,10 +113,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -124,10 +124,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -135,10 +135,10 @@
"c": " Changes to be committed:",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -146,10 +146,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -157,10 +157,10 @@
"c": "\t",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -168,10 +168,10 @@
"c": "deleted: README.md",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit markup.deleted.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.deleted: #CE9178",
+ "light_plus": "markup.deleted: #A31515",
+ "dark_vs": "markup.deleted: #CE9178",
+ "light_vs": "markup.deleted: #A31515",
"hc_black": "markup.deleted: #CE9178"
}
},
@@ -179,10 +179,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -190,10 +190,10 @@
"c": "\t",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -201,10 +201,10 @@
"c": "modified: index.less",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit markup.changed.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.changed: #569CD6",
+ "light_plus": "markup.changed: #0451A5",
+ "dark_vs": "markup.changed: #569CD6",
+ "light_vs": "markup.changed: #0451A5",
"hc_black": "markup.changed: #569CD6"
}
},
@@ -212,10 +212,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -223,10 +223,10 @@
"c": "\t",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -234,10 +234,10 @@
"c": "new file: spec/COMMIT_EDITMSG",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit markup.inserted.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.inserted: #B5CEA8",
+ "light_plus": "markup.inserted: #09885A",
+ "dark_vs": "markup.inserted: #B5CEA8",
+ "light_vs": "markup.inserted: #09885A",
"hc_black": "markup.inserted: #B5CEA8"
}
},
@@ -245,10 +245,10 @@
"c": "#",
"t": "text.git-commit meta.scope.metadata.git-commit comment.line.number-sign.git-commit punctuation.definition.comment.git-commit",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
}
diff --git a/extensions/git/test/colorize-results/example_diff.json b/extensions/git/test/colorize-results/example_diff.json
index e061fcbdd3..07ec9f737b 100644
--- a/extensions/git/test/colorize-results/example_diff.json
+++ b/extensions/git/test/colorize-results/example_diff.json
@@ -3,10 +3,10 @@
"c": "diff --git a/helloworld.txt b/helloworld.txt",
"t": "source.diff meta.diff.header.git",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "meta.diff.header: #569CD6",
+ "light_plus": "meta.diff.header: #000080",
+ "dark_vs": "meta.diff.header: #569CD6",
+ "light_vs": "meta.diff.header: #000080",
"hc_black": "meta.diff.header: #000080"
}
},
@@ -14,10 +14,10 @@
"c": "index e4f37c4..557db03 100644",
"t": "source.diff meta.diff.index.git",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": "---",
"t": "source.diff meta.diff.header.from-file punctuation.definition.from-file.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "meta.diff.header: #569CD6",
+ "light_plus": "meta.diff.header: #000080",
+ "dark_vs": "meta.diff.header: #569CD6",
+ "light_vs": "meta.diff.header: #000080",
"hc_black": "meta.diff.header: #000080"
}
},
@@ -36,10 +36,10 @@
"c": " a/helloworld.txt",
"t": "source.diff meta.diff.header.from-file",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "meta.diff.header: #569CD6",
+ "light_plus": "meta.diff.header: #000080",
+ "dark_vs": "meta.diff.header: #569CD6",
+ "light_vs": "meta.diff.header: #000080",
"hc_black": "meta.diff.header: #000080"
}
},
@@ -47,10 +47,10 @@
"c": "+++",
"t": "source.diff meta.diff.header.to-file punctuation.definition.to-file.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "meta.diff.header: #569CD6",
+ "light_plus": "meta.diff.header: #000080",
+ "dark_vs": "meta.diff.header: #569CD6",
+ "light_vs": "meta.diff.header: #000080",
"hc_black": "meta.diff.header: #000080"
}
},
@@ -58,10 +58,10 @@
"c": " b/helloworld.txt",
"t": "source.diff meta.diff.header.to-file",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "meta.diff.header: #569CD6",
+ "light_plus": "meta.diff.header: #000080",
+ "dark_vs": "meta.diff.header: #569CD6",
+ "light_vs": "meta.diff.header: #000080",
"hc_black": "meta.diff.header: #000080"
}
},
@@ -69,10 +69,10 @@
"c": "@@",
"t": "source.diff meta.diff.range.unified punctuation.definition.range.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": " ",
"t": "source.diff meta.diff.range.unified",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -91,10 +91,10 @@
"c": "-1 +1",
"t": "source.diff meta.diff.range.unified meta.toc-list.line-number.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": " ",
"t": "source.diff meta.diff.range.unified",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -113,10 +113,10 @@
"c": "@@",
"t": "source.diff meta.diff.range.unified punctuation.definition.range.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -124,10 +124,10 @@
"c": "-",
"t": "source.diff markup.deleted.diff punctuation.definition.deleted.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.deleted: #CE9178",
+ "light_plus": "markup.deleted: #A31515",
+ "dark_vs": "markup.deleted: #CE9178",
+ "light_vs": "markup.deleted: #A31515",
"hc_black": "markup.deleted: #CE9178"
}
},
@@ -135,10 +135,10 @@
"c": "Hello world",
"t": "source.diff markup.deleted.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.deleted: #CE9178",
+ "light_plus": "markup.deleted: #A31515",
+ "dark_vs": "markup.deleted: #CE9178",
+ "light_vs": "markup.deleted: #A31515",
"hc_black": "markup.deleted: #CE9178"
}
},
@@ -146,10 +146,10 @@
"c": "+",
"t": "source.diff markup.inserted.diff punctuation.definition.inserted.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.inserted: #B5CEA8",
+ "light_plus": "markup.inserted: #09885A",
+ "dark_vs": "markup.inserted: #B5CEA8",
+ "light_vs": "markup.inserted: #09885A",
"hc_black": "markup.inserted: #B5CEA8"
}
},
@@ -157,10 +157,10 @@
"c": "Hello World",
"t": "source.diff markup.inserted.diff",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.inserted: #B5CEA8",
+ "light_plus": "markup.inserted: #09885A",
+ "dark_vs": "markup.inserted: #B5CEA8",
+ "light_vs": "markup.inserted: #09885A",
"hc_black": "markup.inserted: #B5CEA8"
}
}
diff --git a/extensions/git/test/colorize-results/git-rebase-todo.json b/extensions/git/test/colorize-results/git-rebase-todo.json
index e0497296ac..d21bab1709 100644
--- a/extensions/git/test/colorize-results/git-rebase-todo.json
+++ b/extensions/git/test/colorize-results/git-rebase-todo.json
@@ -3,10 +3,10 @@
"c": "pick",
"t": "text.git-rebase meta.commit-command.git-rebase support.function.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function.git-rebase: #9CDCFE",
+ "light_plus": "support.function.git-rebase: #0451A5",
+ "dark_vs": "support.function.git-rebase: #9CDCFE",
+ "light_vs": "support.function.git-rebase: #0451A5",
"hc_black": "support.function.git-rebase: #D4D4D4"
}
},
@@ -14,10 +14,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": "1fc6c95",
"t": "text.git-rebase meta.commit-command.git-rebase constant.sha.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.sha.git-rebase: #B5CEA8",
+ "light_plus": "constant.sha.git-rebase: #09885A",
+ "dark_vs": "constant.sha.git-rebase: #B5CEA8",
+ "light_vs": "constant.sha.git-rebase: #09885A",
"hc_black": "constant.sha.git-rebase: #B5CEA8"
}
},
@@ -36,10 +36,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": "Patch A",
"t": "text.git-rebase meta.commit-command.git-rebase meta.commit-message.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -58,10 +58,10 @@
"c": "squash",
"t": "text.git-rebase meta.commit-command.git-rebase support.function.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function.git-rebase: #9CDCFE",
+ "light_plus": "support.function.git-rebase: #0451A5",
+ "dark_vs": "support.function.git-rebase: #9CDCFE",
+ "light_vs": "support.function.git-rebase: #0451A5",
"hc_black": "support.function.git-rebase: #D4D4D4"
}
},
@@ -69,10 +69,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": "fa39187",
"t": "text.git-rebase meta.commit-command.git-rebase constant.sha.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.sha.git-rebase: #B5CEA8",
+ "light_plus": "constant.sha.git-rebase: #09885A",
+ "dark_vs": "constant.sha.git-rebase: #B5CEA8",
+ "light_vs": "constant.sha.git-rebase: #09885A",
"hc_black": "constant.sha.git-rebase: #B5CEA8"
}
},
@@ -91,10 +91,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": "Something to add to patch A",
"t": "text.git-rebase meta.commit-command.git-rebase meta.commit-message.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -113,10 +113,10 @@
"c": "pick",
"t": "text.git-rebase meta.commit-command.git-rebase support.function.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function.git-rebase: #9CDCFE",
+ "light_plus": "support.function.git-rebase: #0451A5",
+ "dark_vs": "support.function.git-rebase: #9CDCFE",
+ "light_vs": "support.function.git-rebase: #0451A5",
"hc_black": "support.function.git-rebase: #D4D4D4"
}
},
@@ -124,10 +124,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -135,10 +135,10 @@
"c": "7b36971",
"t": "text.git-rebase meta.commit-command.git-rebase constant.sha.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.sha.git-rebase: #B5CEA8",
+ "light_plus": "constant.sha.git-rebase: #09885A",
+ "dark_vs": "constant.sha.git-rebase: #B5CEA8",
+ "light_vs": "constant.sha.git-rebase: #09885A",
"hc_black": "constant.sha.git-rebase: #B5CEA8"
}
},
@@ -146,10 +146,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "Something to move before patch B",
"t": "text.git-rebase meta.commit-command.git-rebase meta.commit-message.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -168,10 +168,10 @@
"c": "pick",
"t": "text.git-rebase meta.commit-command.git-rebase support.function.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function.git-rebase: #9CDCFE",
+ "light_plus": "support.function.git-rebase: #0451A5",
+ "dark_vs": "support.function.git-rebase: #9CDCFE",
+ "light_vs": "support.function.git-rebase: #0451A5",
"hc_black": "support.function.git-rebase: #D4D4D4"
}
},
@@ -179,10 +179,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -190,10 +190,10 @@
"c": "6b2481b",
"t": "text.git-rebase meta.commit-command.git-rebase constant.sha.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.sha.git-rebase: #B5CEA8",
+ "light_plus": "constant.sha.git-rebase: #09885A",
+ "dark_vs": "constant.sha.git-rebase: #B5CEA8",
+ "light_vs": "constant.sha.git-rebase: #09885A",
"hc_black": "constant.sha.git-rebase: #B5CEA8"
}
},
@@ -201,10 +201,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": "Patch B",
"t": "text.git-rebase meta.commit-command.git-rebase meta.commit-message.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -223,10 +223,10 @@
"c": "fixup",
"t": "text.git-rebase meta.commit-command.git-rebase support.function.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function.git-rebase: #9CDCFE",
+ "light_plus": "support.function.git-rebase: #0451A5",
+ "dark_vs": "support.function.git-rebase: #9CDCFE",
+ "light_vs": "support.function.git-rebase: #0451A5",
"hc_black": "support.function.git-rebase: #D4D4D4"
}
},
@@ -234,10 +234,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -245,10 +245,10 @@
"c": "c619268",
"t": "text.git-rebase meta.commit-command.git-rebase constant.sha.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.sha.git-rebase: #B5CEA8",
+ "light_plus": "constant.sha.git-rebase: #09885A",
+ "dark_vs": "constant.sha.git-rebase: #B5CEA8",
+ "light_vs": "constant.sha.git-rebase: #09885A",
"hc_black": "constant.sha.git-rebase: #B5CEA8"
}
},
@@ -256,10 +256,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": "A fix for Patch B",
"t": "text.git-rebase meta.commit-command.git-rebase meta.commit-message.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -278,10 +278,10 @@
"c": "edit",
"t": "text.git-rebase meta.commit-command.git-rebase support.function.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function.git-rebase: #9CDCFE",
+ "light_plus": "support.function.git-rebase: #0451A5",
+ "dark_vs": "support.function.git-rebase: #9CDCFE",
+ "light_vs": "support.function.git-rebase: #0451A5",
"hc_black": "support.function.git-rebase: #D4D4D4"
}
},
@@ -289,10 +289,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -300,10 +300,10 @@
"c": "dd1475d",
"t": "text.git-rebase meta.commit-command.git-rebase constant.sha.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.sha.git-rebase: #B5CEA8",
+ "light_plus": "constant.sha.git-rebase: #09885A",
+ "dark_vs": "constant.sha.git-rebase: #B5CEA8",
+ "light_vs": "constant.sha.git-rebase: #09885A",
"hc_black": "constant.sha.git-rebase: #B5CEA8"
}
},
@@ -311,10 +311,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -322,10 +322,10 @@
"c": "Something I want to split",
"t": "text.git-rebase meta.commit-command.git-rebase meta.commit-message.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -333,10 +333,10 @@
"c": "reword",
"t": "text.git-rebase meta.commit-command.git-rebase support.function.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function.git-rebase: #9CDCFE",
+ "light_plus": "support.function.git-rebase: #0451A5",
+ "dark_vs": "support.function.git-rebase: #9CDCFE",
+ "light_vs": "support.function.git-rebase: #0451A5",
"hc_black": "support.function.git-rebase: #D4D4D4"
}
},
@@ -344,10 +344,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -355,10 +355,10 @@
"c": "4ca2acc",
"t": "text.git-rebase meta.commit-command.git-rebase constant.sha.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.sha.git-rebase: #B5CEA8",
+ "light_plus": "constant.sha.git-rebase: #09885A",
+ "dark_vs": "constant.sha.git-rebase: #B5CEA8",
+ "light_vs": "constant.sha.git-rebase: #09885A",
"hc_black": "constant.sha.git-rebase: #B5CEA8"
}
},
@@ -366,10 +366,10 @@
"c": " ",
"t": "text.git-rebase meta.commit-command.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -377,10 +377,10 @@
"c": "i cant' typ goods",
"t": "text.git-rebase meta.commit-command.git-rebase meta.commit-message.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -388,10 +388,10 @@
"c": "#",
"t": "text.git-rebase comment.line.number-sign.git-rebase punctuation.definition.comment.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -399,10 +399,10 @@
"c": " Commands:",
"t": "text.git-rebase comment.line.number-sign.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -410,10 +410,10 @@
"c": "#",
"t": "text.git-rebase comment.line.number-sign.git-rebase punctuation.definition.comment.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -421,10 +421,10 @@
"c": " p, pick = use commit",
"t": "text.git-rebase comment.line.number-sign.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -432,10 +432,10 @@
"c": "#",
"t": "text.git-rebase comment.line.number-sign.git-rebase punctuation.definition.comment.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -443,10 +443,10 @@
"c": " r, reword = use commit, but edit the commit message",
"t": "text.git-rebase comment.line.number-sign.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -454,10 +454,10 @@
"c": "#",
"t": "text.git-rebase comment.line.number-sign.git-rebase punctuation.definition.comment.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -465,10 +465,10 @@
"c": " e, edit = use commit, but stop for amending",
"t": "text.git-rebase comment.line.number-sign.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -476,10 +476,10 @@
"c": "#",
"t": "text.git-rebase comment.line.number-sign.git-rebase punctuation.definition.comment.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -487,10 +487,10 @@
"c": " s, squash = use commit, but meld into previous commit",
"t": "text.git-rebase comment.line.number-sign.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -498,10 +498,10 @@
"c": "#",
"t": "text.git-rebase comment.line.number-sign.git-rebase punctuation.definition.comment.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -509,10 +509,10 @@
"c": " f, fixup = like \"squash\", but discard this commit's log message",
"t": "text.git-rebase comment.line.number-sign.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -520,10 +520,10 @@
"c": "#",
"t": "text.git-rebase comment.line.number-sign.git-rebase punctuation.definition.comment.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -531,10 +531,10 @@
"c": " x, exec = run command (the rest of the line) using shell",
"t": "text.git-rebase comment.line.number-sign.git-rebase",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
}
diff --git a/extensions/json-language-features/server/bin/vscode-json-languageserver b/extensions/json-language-features/server/bin/vscode-json-languageserver
index ae3839511b..a80d7d55b4 100644
--- a/extensions/json-language-features/server/bin/vscode-json-languageserver
+++ b/extensions/json-language-features/server/bin/vscode-json-languageserver
@@ -1,6 +1,6 @@
#!/usr/bin/env node
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the Source EULA. See License.txt in the project root for license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
require("../out/jsonServerMain");
\ No newline at end of file
diff --git a/extensions/json/test/colorize-results/test_json.json b/extensions/json/test/colorize-results/test_json.json
index 1d4dbafc38..75561c366d 100644
--- a/extensions/json/test/colorize-results/test_json.json
+++ b/extensions/json/test/colorize-results/test_json.json
@@ -3,10 +3,10 @@
"c": "{",
"t": "source.json meta.structure.dictionary.json punctuation.definition.dictionary.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -14,10 +14,10 @@
"c": "\t",
"t": "source.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": "//",
"t": "source.json meta.structure.dictionary.json comment.line.double-slash.js punctuation.definition.comment.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -36,10 +36,10 @@
"c": " a comment",
"t": "source.json meta.structure.dictionary.json comment.line.double-slash.js",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -47,10 +47,10 @@
"c": "\t",
"t": "source.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -58,10 +58,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -69,10 +69,10 @@
"c": "options",
"t": "source.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -80,10 +80,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -91,10 +91,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -113,10 +113,10 @@
"c": "{",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json punctuation.definition.dictionary.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -124,10 +124,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -135,10 +135,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -146,10 +146,10 @@
"c": "myBool",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -157,10 +157,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -168,10 +168,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -179,10 +179,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -190,10 +190,10 @@
"c": "true",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json constant.language.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.language: #569CD6",
+ "light_plus": "constant.language: #0000FF",
+ "dark_vs": "constant.language: #569CD6",
+ "light_vs": "constant.language: #0000FF",
"hc_black": "constant.language: #569CD6"
}
},
@@ -201,10 +201,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.pair.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -223,10 +223,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -234,10 +234,10 @@
"c": "myInteger",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -245,10 +245,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -256,10 +256,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -278,10 +278,10 @@
"c": "1",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json constant.numeric.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -289,10 +289,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.pair.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -300,10 +300,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -311,10 +311,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -322,10 +322,10 @@
"c": "myString",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -333,10 +333,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -344,10 +344,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -355,10 +355,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -366,10 +366,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json punctuation.definition.string.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -377,10 +377,10 @@
"c": "String",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -388,10 +388,10 @@
"c": "\\u0056",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json constant.character.escape.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.character.escape: #D7BA7D",
+ "light_plus": "constant.character.escape: #FF0000",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "constant.character: #569CD6"
}
},
@@ -399,10 +399,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json punctuation.definition.string.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -410,10 +410,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.pair.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -421,10 +421,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -432,10 +432,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -443,10 +443,10 @@
"c": "myNumber",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -454,10 +454,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -465,10 +465,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -476,10 +476,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -487,10 +487,10 @@
"c": "1.24",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json constant.numeric.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -498,10 +498,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.pair.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -509,10 +509,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -520,10 +520,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -531,10 +531,10 @@
"c": "myNull",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -542,10 +542,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -553,10 +553,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -564,10 +564,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -575,10 +575,10 @@
"c": "null",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json constant.language.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.language: #569CD6",
+ "light_plus": "constant.language: #0000FF",
+ "dark_vs": "constant.language: #569CD6",
+ "light_vs": "constant.language: #0000FF",
"hc_black": "constant.language: #569CD6"
}
},
@@ -586,10 +586,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.pair.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -597,10 +597,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -608,10 +608,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -619,10 +619,10 @@
"c": "myArray",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -630,10 +630,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -641,10 +641,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -652,10 +652,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -663,10 +663,10 @@
"c": "[",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json punctuation.definition.array.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -674,10 +674,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -685,10 +685,10 @@
"c": "1",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json constant.numeric.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -696,10 +696,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json punctuation.separator.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -707,10 +707,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -718,10 +718,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json string.quoted.double.json punctuation.definition.string.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -729,10 +729,10 @@
"c": "Hello",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json string.quoted.double.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -740,10 +740,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json string.quoted.double.json punctuation.definition.string.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -751,10 +751,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json punctuation.separator.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -762,10 +762,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -773,10 +773,10 @@
"c": "true",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json constant.language.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.language: #569CD6",
+ "light_plus": "constant.language: #0000FF",
+ "dark_vs": "constant.language: #569CD6",
+ "light_vs": "constant.language: #0000FF",
"hc_black": "constant.language: #569CD6"
}
},
@@ -784,10 +784,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json punctuation.separator.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -795,10 +795,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -806,10 +806,10 @@
"c": "null",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json constant.language.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.language: #569CD6",
+ "light_plus": "constant.language: #0000FF",
+ "dark_vs": "constant.language: #569CD6",
+ "light_vs": "constant.language: #0000FF",
"hc_black": "constant.language: #569CD6"
}
},
@@ -817,10 +817,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json punctuation.separator.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -828,10 +828,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -839,10 +839,10 @@
"c": "[",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.array.json punctuation.definition.array.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -850,10 +850,10 @@
"c": "]",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.array.json punctuation.definition.array.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -861,10 +861,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json punctuation.separator.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -872,10 +872,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -883,10 +883,10 @@
"c": "{",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json punctuation.definition.dictionary.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -894,10 +894,10 @@
"c": "}",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json meta.structure.dictionary.json punctuation.definition.dictionary.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -905,10 +905,10 @@
"c": "]",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.array.json punctuation.definition.array.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -916,10 +916,10 @@
"c": ",",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.pair.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -927,10 +927,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -938,10 +938,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -949,10 +949,10 @@
"c": "myObject",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -960,10 +960,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -971,10 +971,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -982,10 +982,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -993,10 +993,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1004,10 +1004,10 @@
"c": "{",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json punctuation.definition.dictionary.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1015,10 +1015,10 @@
"c": "\t\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1026,10 +1026,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -1037,10 +1037,10 @@
"c": "foo",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -1048,10 +1048,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json string.json support.type.property-name.json punctuation.support.type.property-name.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name.json: #0451A5",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name.json: #0451A5",
"hc_black": "support.type.property-name: #D4D4D4"
}
},
@@ -1059,10 +1059,10 @@
"c": ":",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json punctuation.separator.dictionary.key-value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1070,10 +1070,10 @@
"c": " ",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1081,10 +1081,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json punctuation.definition.string.begin.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1092,10 +1092,10 @@
"c": "bar",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1103,10 +1103,10 @@
"c": "\"",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json string.quoted.double.json punctuation.definition.string.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1114,10 +1114,10 @@
"c": "\t\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1125,10 +1125,10 @@
"c": "}",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json punctuation.definition.dictionary.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1136,10 +1136,10 @@
"c": "\t",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1147,10 +1147,10 @@
"c": "}",
"t": "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json punctuation.definition.dictionary.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1158,10 +1158,10 @@
"c": "}",
"t": "source.json meta.structure.dictionary.json punctuation.definition.dictionary.end.json",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
}
diff --git a/extensions/markdown-basics/test/colorize-results/test-33886_md.json b/extensions/markdown-basics/test/colorize-results/test-33886_md.json
index 422f02ed2a..179172a573 100644
--- a/extensions/markdown-basics/test/colorize-results/test-33886_md.json
+++ b/extensions/markdown-basics/test/colorize-results/test-33886_md.json
@@ -3,10 +3,10 @@
"c": "#",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -14,10 +14,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -25,32 +25,164 @@
"c": "h",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
{
- "c": "
",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": "<",
+ "t": "text.html.markdown meta.tag.structure.pre.start.html punctuation.definition.tag.begin.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "pre",
+ "t": "text.html.markdown meta.tag.structure.pre.start.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.structure.pre.start.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "<",
+ "t": "text.html.markdown meta.tag.inline.code.start.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "code",
+ "t": "text.html.markdown meta.tag.inline.code.start.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.inline.code.start.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "# a",
+ "t": "text.html.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
+ {
+ "c": "",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.inline.code.end.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "code",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.inline.code.end.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.inline.code.end.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.structure.pre.end.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "pre",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.structure.pre.end.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.structure.pre.end.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
{
"c": "#",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -58,43 +190,120 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
+ {
+ "c": "h",
+ "t": "text.html.markdown markup.heading.markdown heading.1.markdown entity.name.section.markdown",
+ "r": {
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
+ "hc_black": "markup.heading: #6796E6"
+ }
+ },
+ {
+ "c": "<",
+ "t": "text.html.markdown meta.tag.structure.pre.start.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "pre",
+ "t": "text.html.markdown meta.tag.structure.pre.start.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.structure.pre.start.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "# a",
+ "t": "text.html.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
{
"c": "a",
- "t": "text.html.markdown markup.heading.markdown heading.1.markdown entity.name.section.markdown",
+ "t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "markup.heading: #6796E6"
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
}
},
{
- "c": "
",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": "",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.structure.pre.end.html punctuation.definition.tag.begin.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "pre",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.structure.pre.end.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.structure.pre.end.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
}
},
{
"c": "#",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -102,10 +311,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -113,98 +322,10 @@
"c": "h",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "markup.heading: #6796E6"
- }
- },
- {
- "c": "",
- "t": "text.html.markdown meta.paragraph.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
- }
- },
- {
- "c": "#",
- "t": "text.html.markdown markup.heading.markdown heading.1.markdown punctuation.definition.heading.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "markup.heading: #6796E6"
- }
- },
- {
- "c": " ",
- "t": "text.html.markdown markup.heading.markdown heading.1.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "markup.heading: #6796E6"
- }
- },
- {
- "c": "a",
- "t": "text.html.markdown markup.heading.markdown heading.1.markdown entity.name.section.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "markup.heading: #6796E6"
- }
- },
- {
- "c": "a",
- "t": "text.html.markdown meta.paragraph.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
- }
- },
- {
- "c": "#",
- "t": "text.html.markdown markup.heading.markdown heading.1.markdown punctuation.definition.heading.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "markup.heading: #6796E6"
- }
- },
- {
- "c": " ",
- "t": "text.html.markdown markup.heading.markdown heading.1.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "markup.heading: #6796E6"
- }
- },
- {
- "c": "h",
- "t": "text.html.markdown markup.heading.markdown heading.1.markdown entity.name.section.markdown",
- "r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
}
diff --git a/extensions/markdown-basics/test/colorize-results/test_md.json b/extensions/markdown-basics/test/colorize-results/test_md.json
index f4beac1b79..9bc9aa7595 100644
--- a/extensions/markdown-basics/test/colorize-results/test_md.json
+++ b/extensions/markdown-basics/test/colorize-results/test_md.json
@@ -3,10 +3,10 @@
"c": "#",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -14,10 +14,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -25,10 +25,10 @@
"c": "Header 1",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -36,10 +36,10 @@
"c": " #",
"t": "text.html.markdown markup.heading.markdown heading.1.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -47,10 +47,10 @@
"c": "##",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -58,10 +58,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -69,10 +69,10 @@
"c": "Header 2",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -80,10 +80,10 @@
"c": " ##",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -91,10 +91,10 @@
"c": "###",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -102,10 +102,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -113,10 +113,10 @@
"c": "Header 3 ### (Hashes on right are optional)",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -124,10 +124,10 @@
"c": "##",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -135,10 +135,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -146,10 +146,10 @@
"c": "Markdown plus h2 with a custom ID ## {#id-goes-here}",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -157,10 +157,10 @@
"c": "[",
"t": "text.html.markdown meta.paragraph.markdown meta.link.inline.markdown punctuation.definition.string.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -168,10 +168,10 @@
"c": "Link back to H2",
"t": "text.html.markdown meta.paragraph.markdown meta.link.inline.markdown string.other.link.title.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -179,10 +179,10 @@
"c": "]",
"t": "text.html.markdown meta.paragraph.markdown meta.link.inline.markdown punctuation.definition.string.end.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -190,10 +190,10 @@
"c": "(",
"t": "text.html.markdown meta.paragraph.markdown meta.link.inline.markdown punctuation.definition.metadata.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -201,10 +201,10 @@
"c": "#id-goes-here",
"t": "text.html.markdown meta.paragraph.markdown meta.link.inline.markdown markup.underline.link.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": ")",
"t": "text.html.markdown meta.paragraph.markdown meta.link.inline.markdown punctuation.definition.metadata.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -223,10 +223,10 @@
"c": "###",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -234,10 +234,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -245,10 +245,10 @@
"c": "Alternate heading styles:",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -256,10 +256,10 @@
"c": "Alternate Header 1",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": "==================",
"t": "text.html.markdown meta.paragraph.markdown markup.heading.setext.1.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -278,10 +278,10 @@
"c": "Alternate Header 2",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -289,10 +289,10 @@
"c": "------------------",
"t": "text.html.markdown meta.paragraph.markdown markup.heading.setext.2.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -300,10 +300,10 @@
"c": "",
"t": "text.html.markdown comment.block.html punctuation.definition.comment.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
{
- "c": "",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": "<",
+ "t": "text.html.markdown meta.tag.structure.div.start.html punctuation.definition.tag.begin.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "div",
+ "t": "text.html.markdown meta.tag.structure.div.start.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown meta.tag.structure.div.start.html",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "
",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": "class",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.class.html entity.other.attribute-name.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
+ "hc_black": "entity.other.attribute-name: #9CDCFE"
+ }
+ },
+ {
+ "c": "=",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.class.html punctuation.separator.key-value.html",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
+ {
+ "c": "\"",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.class.html string.quoted.double.html punctuation.definition.string.begin.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "custom-class",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.class.html string.quoted.double.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.class.html string.quoted.double.html punctuation.definition.string.end.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown meta.tag.structure.div.start.html",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
+ {
+ "c": "markdown",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.unrecognized.markdown.html entity.other.attribute-name.html",
+ "r": {
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
+ "hc_black": "entity.other.attribute-name: #9CDCFE"
+ }
+ },
+ {
+ "c": "=",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.unrecognized.markdown.html punctuation.separator.key-value.html",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.unrecognized.markdown.html string.quoted.double.html punctuation.definition.string.begin.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "1",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.unrecognized.markdown.html string.quoted.double.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "text.html.markdown meta.tag.structure.div.start.html meta.attribute.unrecognized.markdown.html string.quoted.double.html punctuation.definition.string.end.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.structure.div.start.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
+ {
+ "c": "<",
+ "t": "text.html.markdown meta.tag.structure.div.start.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "div",
+ "t": "text.html.markdown meta.tag.structure.div.start.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.structure.div.start.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
{
"c": " nested div",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "t": "text.html.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "
",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": " ",
+ "t": "text.html.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": " ",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": " and a & ",
+ "t": "text.html.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": " This is a div ",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": "<",
+ "t": "text.html.markdown meta.tag.inline.b.start.html punctuation.definition.tag.begin.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "b",
+ "t": "text.html.markdown meta.tag.inline.b.start.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown meta.tag.inline.b.start.html",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "_",
- "t": "text.html.markdown meta.paragraph.markdown markup.italic.markdown punctuation.definition.italic.markdown",
+ "c": "class",
+ "t": "text.html.markdown meta.tag.inline.b.start.html meta.attribute.class.html entity.other.attribute-name.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
+ "hc_black": "entity.other.attribute-name: #9CDCFE"
+ }
+ },
+ {
+ "c": "=",
+ "t": "text.html.markdown meta.tag.inline.b.start.html meta.attribute.class.html punctuation.separator.key-value.html",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "with",
- "t": "text.html.markdown meta.paragraph.markdown markup.italic.markdown",
+ "c": "\"",
+ "t": "text.html.markdown meta.tag.inline.b.start.html meta.attribute.class.html string.quoted.double.html punctuation.definition.string.begin.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "bold",
+ "t": "text.html.markdown meta.tag.inline.b.start.html meta.attribute.class.html string.quoted.double.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "text.html.markdown meta.tag.inline.b.start.html meta.attribute.class.html string.quoted.double.html punctuation.definition.string.end.html",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.html: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.html: #0000FF",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.inline.b.start.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "bold",
+ "t": "text.html.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "_",
- "t": "text.html.markdown meta.paragraph.markdown markup.italic.markdown punctuation.definition.italic.markdown",
+ "c": "",
+ "t": "text.html.markdown meta.tag.inline.b.end.html punctuation.definition.tag.begin.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "b",
+ "t": "text.html.markdown meta.tag.inline.b.end.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.inline.b.end.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": " element.",
+ "t": "text.html.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": " underscores",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": " ",
+ "t": "text.html.markdown punctuation.whitespace.embedded.leading.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": " and a ",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": "<",
+ "t": "text.html.markdown meta.embedded.block.html meta.tag.metadata.style.start.html punctuation.definition.tag.begin.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
}
},
{
- "c": "&",
- "t": "text.html.markdown meta.paragraph.markdown meta.other.valid-ampersand.markdown",
+ "c": "style",
+ "t": "text.html.markdown meta.embedded.block.html meta.tag.metadata.style.start.html entity.name.tag.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
}
},
{
- "c": "
bold element.",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": ">",
+ "t": "text.html.markdown meta.embedded.block.html meta.tag.metadata.style.start.html punctuation.definition.tag.end.html",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
}
},
{
- "c": " ",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": " ",
+ "t": "text.html.markdown meta.embedded.block.html source.css",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
}
},
{
- "c": "
",
- "t": "text.html.markdown meta.paragraph.markdown",
+ "c": "{",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css punctuation.section.property-list.begin.bracket.curly.css",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "default: #FFFFFF"
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css",
+ "r": {
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
+ }
+ },
+ {
+ "c": "font",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css meta.property-name.css support.type.property-name.css",
+ "r": {
+ "dark_plus": "support.type.property-name: #9CDCFE",
+ "light_plus": "support.type.property-name: #FF0000",
+ "dark_vs": "support.type.property-name: #9CDCFE",
+ "light_vs": "support.type.property-name: #FF0000",
+ "hc_black": "support.type.property-name: #D4D4D4"
+ }
+ },
+ {
+ "c": ":",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css punctuation.separator.key-value.css",
+ "r": {
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css",
+ "r": {
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css meta.property-value.css string.quoted.double.css punctuation.definition.string.begin.css",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "Consolas",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css meta.property-value.css string.quoted.double.css",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css meta.property-value.css string.quoted.double.css punctuation.definition.string.end.css",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css",
+ "r": {
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
+ }
+ },
+ {
+ "c": "}",
+ "t": "text.html.markdown meta.embedded.block.html source.css meta.property-list.css punctuation.section.property-list.end.bracket.curly.css",
+ "r": {
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
+ }
+ },
+ {
+ "c": " ",
+ "t": "text.html.markdown meta.embedded.block.html source.css",
+ "r": {
+ "dark_plus": "meta.embedded: #D4D4D4",
+ "light_plus": "meta.embedded: #000000",
+ "dark_vs": "meta.embedded: #D4D4D4",
+ "light_vs": "meta.embedded: #000000",
+ "hc_black": "meta.embedded: #FFFFFF"
+ }
+ },
+ {
+ "c": "<",
+ "t": "text.html.markdown meta.embedded.block.html meta.tag.metadata.style.end.html punctuation.definition.tag.begin.html source.css",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "/",
+ "t": "text.html.markdown meta.embedded.block.html meta.tag.metadata.style.end.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "style",
+ "t": "text.html.markdown meta.embedded.block.html meta.tag.metadata.style.end.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.embedded.block.html meta.tag.metadata.style.end.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "",
+ "t": "text.html.markdown meta.tag.structure.div.end.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "div",
+ "t": "text.html.markdown meta.tag.structure.div.end.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.tag.structure.div.end.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
}
},
{
"c": "*",
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -553,10 +1224,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -564,10 +1235,10 @@
"c": "Bullet lists are easy too",
"t": "text.html.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -575,10 +1246,10 @@
"c": "-",
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -586,10 +1257,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -597,10 +1268,10 @@
"c": "Another one",
"t": "text.html.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -608,10 +1279,10 @@
"c": "+",
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -619,10 +1290,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -630,10 +1301,10 @@
"c": "Another one",
"t": "text.html.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -641,10 +1312,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -652,10 +1323,10 @@
"c": "+",
"t": "text.html.markdown markup.list.unnumbered.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -663,10 +1334,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -674,10 +1345,10 @@
"c": "nested list",
"t": "text.html.markdown markup.list.unnumbered.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -685,10 +1356,10 @@
"c": "This is a paragraph, which is text surrounded by",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -696,10 +1367,10 @@
"c": "whitespace. Paragraphs can be on one",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -707,10 +1378,10 @@
"c": "line (or many), and can drone on for hours.",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -718,10 +1389,10 @@
"c": "Now some inline markup like ",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -729,10 +1400,10 @@
"c": "_",
"t": "text.html.markdown meta.paragraph.markdown markup.italic.markdown punctuation.definition.italic.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -740,10 +1411,10 @@
"c": "italics",
"t": "text.html.markdown meta.paragraph.markdown markup.italic.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -751,10 +1422,10 @@
"c": "_",
"t": "text.html.markdown meta.paragraph.markdown markup.italic.markdown punctuation.definition.italic.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -762,10 +1433,10 @@
"c": ", ",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -773,10 +1444,10 @@
"c": "**",
"t": "text.html.markdown meta.paragraph.markdown markup.bold.markdown punctuation.definition.bold.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.bold: #569CD6",
+ "light_plus": "markup.bold: #000080",
+ "dark_vs": "markup.bold: #569CD6",
+ "light_vs": "markup.bold: #000080",
"hc_black": "default: #FFFFFF"
}
},
@@ -784,10 +1455,10 @@
"c": "bold",
"t": "text.html.markdown meta.paragraph.markdown markup.bold.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.bold: #569CD6",
+ "light_plus": "markup.bold: #000080",
+ "dark_vs": "markup.bold: #569CD6",
+ "light_vs": "markup.bold: #000080",
"hc_black": "default: #FFFFFF"
}
},
@@ -795,10 +1466,10 @@
"c": "**",
"t": "text.html.markdown meta.paragraph.markdown markup.bold.markdown punctuation.definition.bold.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.bold: #569CD6",
+ "light_plus": "markup.bold: #000080",
+ "dark_vs": "markup.bold: #569CD6",
+ "light_vs": "markup.bold: #000080",
"hc_black": "default: #FFFFFF"
}
},
@@ -806,10 +1477,10 @@
"c": ",",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -817,10 +1488,10 @@
"c": "and ",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -828,10 +1499,10 @@
"c": "`",
"t": "text.html.markdown meta.paragraph.markdown markup.inline.raw.string.markdown punctuation.definition.raw.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.inline.raw: #CE9178",
+ "light_plus": "markup.inline.raw: #800000",
+ "dark_vs": "markup.inline.raw: #CE9178",
+ "light_vs": "markup.inline.raw: #800000",
"hc_black": "default: #FFFFFF"
}
},
@@ -839,10 +1510,10 @@
"c": "code()",
"t": "text.html.markdown meta.paragraph.markdown markup.inline.raw.string.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.inline.raw: #CE9178",
+ "light_plus": "markup.inline.raw: #800000",
+ "dark_vs": "markup.inline.raw: #CE9178",
+ "light_vs": "markup.inline.raw: #800000",
"hc_black": "default: #FFFFFF"
}
},
@@ -850,10 +1521,10 @@
"c": "`",
"t": "text.html.markdown meta.paragraph.markdown markup.inline.raw.string.markdown punctuation.definition.raw.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.inline.raw: #CE9178",
+ "light_plus": "markup.inline.raw: #800000",
+ "dark_vs": "markup.inline.raw: #CE9178",
+ "light_vs": "markup.inline.raw: #800000",
"hc_black": "default: #FFFFFF"
}
},
@@ -861,10 +1532,10 @@
"c": ". Note that underscores",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -872,10 +1543,10 @@
"c": "in_words_are ignored.",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -883,10 +1554,10 @@
"c": "````",
"t": "text.html.markdown markup.fenced_code.block.markdown punctuation.definition.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -894,10 +1565,10 @@
"c": "application/json",
"t": "text.html.markdown markup.fenced_code.block.markdown fenced_code.block.language",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -905,10 +1576,10 @@
"c": " { value: [\"or with a mime type\"] }",
"t": "text.html.markdown markup.fenced_code.block.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -916,10 +1587,10 @@
"c": "````",
"t": "text.html.markdown markup.fenced_code.block.markdown punctuation.definition.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -927,10 +1598,10 @@
"c": ">",
"t": "text.html.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -938,10 +1609,10 @@
"c": " ",
"t": "text.html.markdown markup.quote.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -949,10 +1620,10 @@
"c": "Blockquotes are like quoted text in email replies",
"t": "text.html.markdown markup.quote.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -960,10 +1631,10 @@
"c": ">",
"t": "text.html.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -971,10 +1642,10 @@
"c": ">",
"t": "text.html.markdown markup.quote.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -982,10 +1653,10 @@
"c": " ",
"t": "text.html.markdown markup.quote.markdown markup.quote.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -993,10 +1664,10 @@
"c": "And, they can be nested",
"t": "text.html.markdown markup.quote.markdown markup.quote.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1004,10 +1675,10 @@
"c": "1.",
"t": "text.html.markdown markup.list.numbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1015,10 +1686,10 @@
"c": " ",
"t": "text.html.markdown markup.list.numbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1026,10 +1697,10 @@
"c": "A numbered list",
"t": "text.html.markdown markup.list.numbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1037,10 +1708,10 @@
"c": " ",
"t": "text.html.markdown markup.list.numbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1048,10 +1719,10 @@
"c": ">",
"t": "text.html.markdown markup.list.numbered.markdown markup.quote.markdown punctuation.definition.quote.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_plus": "punctuation.definition.quote.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.quote.begin.markdown: #6A9955",
+ "light_vs": "punctuation.definition.quote.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1059,10 +1730,10 @@
"c": " ",
"t": "text.html.markdown markup.list.numbered.markdown markup.quote.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1070,10 +1741,10 @@
"c": "Block quotes in list",
"t": "text.html.markdown markup.list.numbered.markdown markup.quote.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1081,10 +1752,10 @@
"c": "2.",
"t": "text.html.markdown markup.list.numbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1092,10 +1763,10 @@
"c": " ",
"t": "text.html.markdown markup.list.numbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1103,10 +1774,10 @@
"c": "Which is numbered",
"t": "text.html.markdown markup.list.numbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1114,10 +1785,10 @@
"c": "3.",
"t": "text.html.markdown markup.list.numbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1125,10 +1796,10 @@
"c": " ",
"t": "text.html.markdown markup.list.numbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1136,10 +1807,10 @@
"c": "With periods and a space",
"t": "text.html.markdown markup.list.numbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1147,10 +1818,10 @@
"c": "And now some code:",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1158,10 +1829,10 @@
"c": " // Code is just text indented a bit",
"t": "text.html.markdown markup.raw.block.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1169,10 +1840,10 @@
"c": " which(is_easy) to_remember();",
"t": "text.html.markdown markup.raw.block.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1180,10 +1851,10 @@
"c": "And a block",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1191,10 +1862,10 @@
"c": "~~~",
"t": "text.html.markdown markup.fenced_code.block.markdown punctuation.definition.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1202,10 +1873,10 @@
"c": "// Markdown extra adds un-indented code blocks too",
"t": "text.html.markdown markup.fenced_code.block.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1213,10 +1884,10 @@
"c": "if (this_is_more_code == true && !indented) {",
"t": "text.html.markdown markup.fenced_code.block.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1224,10 +1895,10 @@
"c": " // tild wrapped code blocks, also not indented",
"t": "text.html.markdown markup.fenced_code.block.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1235,10 +1906,10 @@
"c": "}",
"t": "text.html.markdown markup.fenced_code.block.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1246,10 +1917,10 @@
"c": "~~~",
"t": "text.html.markdown markup.fenced_code.block.markdown punctuation.definition.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1257,10 +1928,10 @@
"c": "Text with",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1268,10 +1939,10 @@
"c": "two trailing spaces",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1279,10 +1950,10 @@
"c": "(on the right)",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1290,10 +1961,10 @@
"c": "can be used",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1301,10 +1972,10 @@
"c": "for things like poems",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1312,10 +1983,10 @@
"c": "###",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1323,10 +1994,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1334,10 +2005,10 @@
"c": "Horizontal rules",
"t": "text.html.markdown markup.heading.markdown heading.3.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1345,10 +2016,10 @@
"c": "* * * *",
"t": "text.html.markdown meta.separator.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1356,10 +2027,10 @@
"c": "****",
"t": "text.html.markdown meta.separator.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1367,10 +2038,10 @@
"c": "--------------------------",
"t": "text.html.markdown meta.separator.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1378,10 +2049,10 @@
"c": "![",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown punctuation.definition.string.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1389,10 +2060,10 @@
"c": "picture alt",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown string.other.link.description.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1400,10 +2071,10 @@
"c": "]",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown punctuation.definition.string.end.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1411,10 +2082,10 @@
"c": "(",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown punctuation.definition.metadata.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1422,10 +2093,10 @@
"c": "/images/photo.jpeg",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown markup.underline.link.image.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1433,10 +2104,10 @@
"c": " ",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1444,10 +2115,10 @@
"c": "\"",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown string.other.link.description.title.markdown punctuation.definition.string.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1455,10 +2126,10 @@
"c": "Title is optional",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown string.other.link.description.title.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1466,10 +2137,10 @@
"c": "\"",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown string.other.link.description.title.markdown punctuation.definition.string.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1477,10 +2148,10 @@
"c": ")",
"t": "text.html.markdown meta.paragraph.markdown meta.image.inline.markdown punctuation.definition.metadata.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1488,10 +2159,10 @@
"c": "##",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1499,10 +2170,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1510,10 +2181,10 @@
"c": "Markdown plus tables",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1521,10 +2192,10 @@
"c": " ##",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1532,10 +2203,10 @@
"c": "| Header | Header | Right |",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1543,10 +2214,10 @@
"c": "| ------ | ------ | -----: |",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1554,10 +2225,10 @@
"c": "| Cell | Cell | $10 |",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1565,10 +2236,10 @@
"c": "| Cell | Cell | $20 |",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1576,10 +2247,10 @@
"c": "*",
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1587,10 +2258,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1598,10 +2269,10 @@
"c": "Outer pipes on tables are optional",
"t": "text.html.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1609,10 +2280,10 @@
"c": "*",
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1620,10 +2291,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1631,10 +2302,10 @@
"c": "Colon used for alignment (right versus left)",
"t": "text.html.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1642,10 +2313,10 @@
"c": "##",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1653,10 +2324,10 @@
"c": " ",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1664,10 +2335,10 @@
"c": "Markdown plus definition lists",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown entity.name.section.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1675,10 +2346,10 @@
"c": " ##",
"t": "text.html.markdown markup.heading.markdown heading.2.markdown punctuation.definition.heading.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "markup.heading: #569CD6",
+ "light_plus": "markup.heading: #800000",
+ "dark_vs": "markup.heading: #569CD6",
+ "light_vs": "markup.heading: #800000",
"hc_black": "markup.heading: #6796E6"
}
},
@@ -1686,10 +2357,10 @@
"c": "Bottled water",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1697,10 +2368,10 @@
"c": ": $ 1.25",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1708,10 +2379,10 @@
"c": ": $ 1.55 (Large)",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1719,10 +2390,10 @@
"c": "Milk",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1730,10 +2401,10 @@
"c": "Pop",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1741,10 +2412,10 @@
"c": ": $ 1.75",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1752,10 +2423,10 @@
"c": "*",
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1763,10 +2434,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1774,10 +2445,10 @@
"c": "Multiple definitions and terms are possible",
"t": "text.html.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1785,10 +2456,10 @@
"c": "*",
"t": "text.html.markdown markup.list.unnumbered.markdown punctuation.definition.list.begin.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_plus": "punctuation.definition.list.begin.markdown: #0451A5",
+ "dark_vs": "punctuation.definition.list.begin.markdown: #6796E6",
+ "light_vs": "punctuation.definition.list.begin.markdown: #0451A5",
"hc_black": "default: #FFFFFF"
}
},
@@ -1796,10 +2467,10 @@
"c": " ",
"t": "text.html.markdown markup.list.unnumbered.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1807,21 +2478,109 @@
"c": "Definitions can include multiple paragraphs too",
"t": "text.html.markdown markup.list.unnumbered.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "*[ABBR]: Markdown plus abbreviations (produces an tag)",
+ "c": "*",
"t": "text.html.markdown meta.paragraph.markdown",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
+ {
+ "c": "[",
+ "t": "text.html.markdown meta.paragraph.markdown meta.link.reference.markdown punctuation.definition.string.begin.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
+ {
+ "c": "ABBR",
+ "t": "text.html.markdown meta.paragraph.markdown meta.link.reference.markdown string.other.link.title.markdown",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "]",
+ "t": "text.html.markdown meta.paragraph.markdown meta.link.reference.markdown punctuation.definition.string.end.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
+ {
+ "c": ": Markdown plus abbreviations (produces an ",
+ "t": "text.html.markdown meta.paragraph.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
+ }
+ },
+ {
+ "c": "<",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.inline.abbr.start.html punctuation.definition.tag.begin.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": "abbr",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.inline.abbr.start.html entity.name.tag.html",
+ "r": {
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
+ "hc_black": "entity.name.tag: #569CD6"
+ }
+ },
+ {
+ "c": ">",
+ "t": "text.html.markdown meta.paragraph.markdown meta.tag.inline.abbr.start.html punctuation.definition.tag.end.html",
+ "r": {
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
+ "hc_black": "punctuation.definition.tag: #808080"
+ }
+ },
+ {
+ "c": " tag)",
+ "t": "text.html.markdown meta.paragraph.markdown",
+ "r": {
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
}
diff --git a/extensions/markdown-language-features/media/tomorrow.css b/extensions/markdown-language-features/media/tomorrow.css
deleted file mode 100644
index 96edd12b02..0000000000
--- a/extensions/markdown-language-features/media/tomorrow.css
+++ /dev/null
@@ -1,73 +0,0 @@
-/* Tomorrow Theme */
-/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
-/* Original theme - https://github.com/chriskempson/tomorrow-theme */
-
-/* Tomorrow Comment */
-.hljs-comment,
-.hljs-quote {
- color: #8e908c;
-}
-
-/* Tomorrow Red */
-.hljs-variable,
-.hljs-template-variable,
-.hljs-tag,
-.hljs-name,
-.hljs-selector-id,
-.hljs-selector-class,
-.hljs-regexp,
-.hljs-deletion {
- color: #c82829;
-}
-
-/* Tomorrow Orange */
-.hljs-number,
-.hljs-built_in,
-.hljs-builtin-name,
-.hljs-literal,
-.hljs-type,
-.hljs-params,
-.hljs-meta,
-.hljs-link {
- color: #f5871f;
-}
-
-/* Tomorrow Yellow */
-.hljs-attribute {
- color: #eab700;
-}
-
-/* Tomorrow Green */
-.hljs-string,
-.hljs-symbol,
-.hljs-bullet,
-.hljs-addition {
- color: #718c00;
-}
-
-/* Tomorrow Blue */
-.hljs-title,
-.hljs-section {
- color: #4271ae;
-}
-
-/* Tomorrow Purple */
-.hljs-keyword,
-.hljs-selector-tag {
- color: #8959a8;
-}
-
-.hljs {
- display: block;
- overflow-x: auto;
- color: #4d4d4c;
- padding: 0.5em;
-}
-
-.hljs-emphasis {
- font-style: italic;
-}
-
-.hljs-strong {
- font-weight: bold;
-}
\ No newline at end of file
diff --git a/extensions/powershell/syntaxes/powershell.tmLanguage.json b/extensions/powershell/syntaxes/powershell.tmLanguage.json
index b997667c5a..59ee6fbd13 100644
--- a/extensions/powershell/syntaxes/powershell.tmLanguage.json
+++ b/extensions/powershell/syntaxes/powershell.tmLanguage.json
@@ -71,7 +71,17 @@
},
{
"begin": "(?&1 & set\"",
+ "c": " 2>&1 & set",
"t": "source.powershell meta.scriptblock.powershell interpolated.simple.source.powershell string.quoted.double.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "source.powershell meta.scriptblock.powershell interpolated.simple.source.powershell string.quoted.double.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1191,10 +1224,10 @@
"c": ")",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.group.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1202,10 +1235,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1213,10 +1246,10 @@
"c": "{",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.braces.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1224,10 +1257,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1235,10 +1268,10 @@
"c": "if",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell keyword.control.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -1246,10 +1279,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1257,10 +1290,10 @@
"c": "(",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.group.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1290,10 +1323,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1301,10 +1334,10 @@
"c": "-match",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell keyword.operator.comparison.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -1312,21 +1345,43 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "'^([^=]+)=(.*)'",
+ "c": "'",
+ "t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell string.quoted.single.powershell punctuation.definition.string.begin.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "^([^=]+)=(.*)",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell string.quoted.single.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "'",
+ "t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell string.quoted.single.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1334,10 +1389,10 @@
"c": ")",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.group.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1345,10 +1400,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1356,10 +1411,10 @@
"c": "{",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.braces.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1367,10 +1422,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1378,10 +1433,10 @@
"c": "[",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.bracket.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1389,10 +1444,10 @@
"c": "System.Environment",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell storage.type.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "storage.type: #569CD6",
+ "light_plus": "storage.type: #0000FF",
+ "dark_vs": "storage.type: #569CD6",
+ "light_vs": "storage.type: #0000FF",
"hc_black": "storage.type: #569CD6"
}
},
@@ -1400,10 +1455,10 @@
"c": "]",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.bracket.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1411,10 +1466,10 @@
"c": "::SetEnvironmentVariable",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1422,10 +1477,10 @@
"c": "(",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.group.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1455,10 +1510,10 @@
"c": "[",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell punctuation.section.bracket.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1466,10 +1521,10 @@
"c": "1",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell constant.numeric.integer.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -1477,10 +1532,10 @@
"c": "]",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell punctuation.section.bracket.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1488,10 +1543,10 @@
"c": ",",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell keyword.operator.other.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -1499,10 +1554,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1532,10 +1587,10 @@
"c": "[",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell punctuation.section.bracket.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1543,10 +1598,10 @@
"c": "2",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell constant.numeric.integer.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -1554,10 +1609,10 @@
"c": "]",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell interpolated.simple.source.powershell punctuation.section.bracket.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1565,10 +1620,10 @@
"c": ")",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.group.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1576,10 +1631,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1587,10 +1642,10 @@
"c": "}",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.braces.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1598,10 +1653,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1609,10 +1664,10 @@
"c": "}",
"t": "source.powershell meta.scriptblock.powershell meta.scriptblock.powershell punctuation.section.braces.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1620,10 +1675,10 @@
"c": "}",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.braces.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1631,10 +1686,10 @@
"c": "Write-Host",
"t": "source.powershell support.function.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -1642,10 +1697,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1653,10 +1708,10 @@
"c": "-",
"t": "source.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -1664,43 +1719,65 @@
"c": "Object ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "'Initializing Azure PowerShell environment...'",
+ "c": "'",
+ "t": "source.powershell string.quoted.single.powershell punctuation.definition.string.begin.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "Initializing Azure PowerShell environment...",
"t": "source.powershell string.quoted.single.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "'",
+ "t": "source.powershell string.quoted.single.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
{
"c": ";",
- "t": "source.powershell keyword.other.statement-separator.powershell",
+ "t": "source.powershell punctuation.terminator.statement.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
}
},
{
"c": "#",
"t": "source.powershell comment.line.powershell punctuation.definition.comment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -1708,10 +1785,10 @@
"c": " PowerShell commands need elevation for dependencies installation and running tests",
"t": "source.powershell comment.line.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -1719,10 +1796,10 @@
"c": "if",
"t": "source.powershell keyword.control.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -1730,10 +1807,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1741,10 +1818,10 @@
"c": "(",
"t": "source.powershell punctuation.section.group.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1752,10 +1829,10 @@
"c": "!",
"t": "source.powershell interpolated.simple.source.powershell keyword.operator.unary.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -1763,10 +1840,10 @@
"c": "(",
"t": "source.powershell interpolated.simple.source.powershell punctuation.section.group.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1774,10 +1851,10 @@
"c": "Test-IsAdmin",
"t": "source.powershell interpolated.simple.source.powershell interpolated.simple.source.powershell support.function.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -1785,10 +1862,10 @@
"c": ")",
"t": "source.powershell interpolated.simple.source.powershell punctuation.section.group.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1796,10 +1873,10 @@
"c": ")",
"t": "source.powershell punctuation.section.group.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1807,10 +1884,10 @@
"c": "{",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.braces.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1818,10 +1895,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1829,10 +1906,10 @@
"c": "Write-Host",
"t": "source.powershell meta.scriptblock.powershell support.function.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -1840,10 +1917,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1851,10 +1928,10 @@
"c": "-",
"t": "source.powershell meta.scriptblock.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -1862,21 +1939,43 @@
"c": "Object ",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "'Please launch command under administrator account. It is needed for environment setting up and unit test.'",
+ "c": "'",
+ "t": "source.powershell meta.scriptblock.powershell string.quoted.single.powershell punctuation.definition.string.begin.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "Please launch command under administrator account. It is needed for environment setting up and unit test.",
"t": "source.powershell meta.scriptblock.powershell string.quoted.single.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "'",
+ "t": "source.powershell meta.scriptblock.powershell string.quoted.single.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1884,10 +1983,10 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1895,10 +1994,10 @@
"c": "-",
"t": "source.powershell meta.scriptblock.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -1906,54 +2005,54 @@
"c": "ForegroundColor Red",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": ";",
- "t": "source.powershell meta.scriptblock.powershell keyword.other.statement-separator.powershell",
+ "t": "source.powershell meta.scriptblock.powershell punctuation.terminator.statement.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
}
},
{
"c": "}",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.braces.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "env:",
- "t": "source.powershell support.variable.drive.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell support.variable.drive.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.variable: #9CDCFE",
+ "light_plus": "support.variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.variable: #9CDCFE"
}
},
@@ -1961,10 +2060,10 @@
"c": "AzurePSRoot",
"t": "source.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -1972,10 +2071,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1983,10 +2082,10 @@
"c": "=",
"t": "source.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -1994,10 +2093,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2005,10 +2104,10 @@
"c": "Split-Path",
"t": "source.powershell support.function.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -2016,10 +2115,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2027,10 +2126,10 @@
"c": "-",
"t": "source.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -2038,10 +2137,10 @@
"c": "Parent ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2049,10 +2148,10 @@
"c": "-",
"t": "source.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -2060,32 +2159,32 @@
"c": "Path ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "env:",
- "t": "source.powershell support.variable.drive.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell support.variable.drive.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.variable: #9CDCFE",
+ "light_plus": "support.variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.variable: #9CDCFE"
}
},
@@ -2093,32 +2192,32 @@
"c": "AzurePSRoot",
"t": "source.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
{
"c": ";",
- "t": "source.powershell keyword.other.statement-separator.powershell",
+ "t": "source.powershell punctuation.terminator.statement.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
}
},
{
"c": "if",
"t": "source.powershell keyword.control.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -2126,10 +2225,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2137,10 +2236,10 @@
"c": "(",
"t": "source.powershell punctuation.section.group.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2148,10 +2247,10 @@
"c": "Test-Path",
"t": "source.powershell interpolated.simple.source.powershell support.function.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -2159,10 +2258,10 @@
"c": " ",
"t": "source.powershell interpolated.simple.source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2170,10 +2269,10 @@
"c": "-",
"t": "source.powershell interpolated.simple.source.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -2181,43 +2280,43 @@
"c": "Path ",
"t": "source.powershell interpolated.simple.source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "\"",
- "t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell",
+ "t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell punctuation.definition.string.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
{
"c": "$",
- "t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "env:",
- "t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell support.variable.drive.powershell",
+ "t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell variable.other.readwrite.powershell support.variable.drive.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.variable: #9CDCFE",
+ "light_plus": "support.variable: #001080",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "support.variable: #9CDCFE"
}
},
@@ -2225,21 +2324,32 @@
"c": "ADXSDKProgramFiles",
"t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "variable: #9CDCFE"
}
},
{
- "c": "\\Microsoft Visual Studio 12.0\"",
+ "c": "\\Microsoft Visual Studio 12.0",
"t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "source.powershell interpolated.simple.source.powershell string.quoted.double.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -2247,10 +2357,10 @@
"c": ")",
"t": "source.powershell punctuation.section.group.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2258,10 +2368,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2269,10 +2379,10 @@
"c": "{",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.braces.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2280,32 +2390,32 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell meta.scriptblock.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell meta.scriptblock.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "vsVersion",
"t": "source.powershell meta.scriptblock.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -2313,21 +2423,43 @@
"c": "=",
"t": "source.powershell meta.scriptblock.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
{
- "c": "\"12.0\"",
+ "c": "\"",
+ "t": "source.powershell meta.scriptblock.powershell string.quoted.double.powershell punctuation.definition.string.begin.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "12.0",
"t": "source.powershell meta.scriptblock.powershell string.quoted.double.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "source.powershell meta.scriptblock.powershell string.quoted.double.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -2335,10 +2467,10 @@
"c": "}",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.braces.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2346,10 +2478,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2357,10 +2489,10 @@
"c": "else",
"t": "source.powershell keyword.control.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -2368,10 +2500,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2379,10 +2511,10 @@
"c": "{",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.braces.begin.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2390,32 +2522,32 @@
"c": " ",
"t": "source.powershell meta.scriptblock.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell meta.scriptblock.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell meta.scriptblock.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "vsVersion",
"t": "source.powershell meta.scriptblock.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -2423,21 +2555,43 @@
"c": "=",
"t": "source.powershell meta.scriptblock.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
{
- "c": "\"11.0\"",
+ "c": "\"",
+ "t": "source.powershell meta.scriptblock.powershell string.quoted.double.powershell punctuation.definition.string.begin.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "11.0",
"t": "source.powershell meta.scriptblock.powershell string.quoted.double.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"",
+ "t": "source.powershell meta.scriptblock.powershell string.quoted.double.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -2445,32 +2599,32 @@
"c": "}",
"t": "source.powershell meta.scriptblock.powershell punctuation.section.braces.end.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "setVSEnv",
"t": "source.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -2478,10 +2632,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2489,10 +2643,10 @@
"c": "=",
"t": "source.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -2500,21 +2654,43 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
- "c": "'\"{0}\\Microsoft Visual Studio {1}\\VC\\vcvarsall.bat\" x64'",
+ "c": "'",
+ "t": "source.powershell string.quoted.single.powershell punctuation.definition.string.begin.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "\"{0}\\Microsoft Visual Studio {1}\\VC\\vcvarsall.bat\" x64",
"t": "source.powershell string.quoted.single.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
+ "hc_black": "string: #CE9178"
+ }
+ },
+ {
+ "c": "'",
+ "t": "source.powershell string.quoted.single.powershell punctuation.definition.string.end.powershell",
+ "r": {
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -2522,10 +2698,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2533,10 +2709,10 @@
"c": "-f",
"t": "source.powershell keyword.operator.string-format.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -2544,32 +2720,32 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "env:",
- "t": "source.powershell support.variable.drive.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell support.variable.drive.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.variable: #9CDCFE",
+ "light_plus": "support.variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.variable: #9CDCFE"
}
},
@@ -2577,10 +2753,10 @@
"c": "ADXSDKProgramFiles",
"t": "source.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -2588,10 +2764,10 @@
"c": ",",
"t": "source.powershell keyword.operator.other.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -2599,54 +2775,54 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "vsVersion",
"t": "source.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
{
"c": ";",
- "t": "source.powershell keyword.other.statement-separator.powershell",
+ "t": "source.powershell punctuation.terminator.statement.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
}
},
{
"c": "Invoke-Environment",
"t": "source.powershell support.function.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -2654,10 +2830,10 @@
"c": " ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -2665,10 +2841,10 @@
"c": "-",
"t": "source.powershell keyword.operator.assignment.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -2676,44 +2852,44 @@
"c": "Command ",
"t": "source.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
{
"c": "$",
- "t": "source.powershell keyword.other.variable.definition.powershell",
+ "t": "source.powershell variable.other.readwrite.powershell punctuation.definition.variable.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "variable: #9CDCFE"
}
},
{
"c": "setVSEnv",
"t": "source.powershell variable.other.readwrite.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
{
"c": ";",
- "t": "source.powershell keyword.other.statement-separator.powershell",
+ "t": "source.powershell punctuation.terminator.statement.powershell",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
- "hc_black": "keyword: #569CD6"
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
+ "hc_black": "default: #FFFFFF"
}
}
]
\ No newline at end of file
diff --git a/extensions/python/syntaxes/MagicPython.tmLanguage.json b/extensions/python/syntaxes/MagicPython.tmLanguage.json
index ca3617c466..d89e7ed110 100644
--- a/extensions/python/syntaxes/MagicPython.tmLanguage.json
+++ b/extensions/python/syntaxes/MagicPython.tmLanguage.json
@@ -97,7 +97,8 @@
},
"docstring-statement": {
"begin": "^(?=\\s*[rR]?(\\'\\'\\'|\\\"\\\"\\\"|\\'|\\\"))",
- "end": "(?<=\\'\\'\\'|\\\"\\\"\\\"|\\'|\\\")",
+ "comment": "the string either terminates correctly or by the beginning of a new line (this is for single line docstrings that aren't terminated) AND it's not followed by another docstring",
+ "end": "((?<=\\1)|^)(?!\\s*[rR]?(\\'\\'\\'|\\\"\\\"\\\"|\\'|\\\"))",
"patterns": [
{
"include": "#docstring"
@@ -164,7 +165,7 @@
{
"name": "string.quoted.docstring.single.python",
"begin": "(\\'|\\\")",
- "end": "(\\1)|((?=^]? [-+ ]? \\#?\n \\d* ,? (\\.\\d+)? [bcdeEfFgGnosxX%]? )?\n })\n )\n",
"captures": {
- "2": {
- "name": "storage.type.format.python"
+ "1": {
+ "name": "constant.character.format.placeholder.other.python"
},
"3": {
"name": "storage.type.format.python"
+ },
+ "4": {
+ "name": "storage.type.format.python"
}
}
},
@@ -889,15 +893,10 @@
"3": {
"name": "storage.type.format.python"
},
- "3": {
+ "4": {
"name": "storage.type.format.python"
}
- },
- "patterns": [
- {
- "match": "(?x) \\{ [^'\"}\\n]*? \\} (?=.*?\\})\n"
- }
- ]
+ }
}
]
},
@@ -4585,7 +4584,7 @@
},
"string-quoted-single-line": {
"name": "string.quoted.single.python",
- "begin": "(\\b[rR](?=[uU]))?([uU])?((['\"]))",
+ "begin": "(?:\\b([rR])(?=[uU]))?([uU])?((['\"]))",
"end": "(\\3)|((?>> ",
"t": "source.python string.quoted.docstring.raw.multi.python keyword.control.flow.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -6669,10 +6669,10 @@
"c": "for a in foo(2, b=1,",
"t": "source.python string.quoted.docstring.raw.multi.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -6680,10 +6680,10 @@
"c": " ",
"t": "source.python string.quoted.docstring.raw.multi.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -6691,10 +6691,10 @@
"c": "... ",
"t": "source.python string.quoted.docstring.raw.multi.python keyword.control.flow.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -6702,10 +6702,10 @@
"c": " c=3):",
"t": "source.python string.quoted.docstring.raw.multi.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -6713,10 +6713,10 @@
"c": " ",
"t": "source.python string.quoted.docstring.raw.multi.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -6724,10 +6724,10 @@
"c": "... ",
"t": "source.python string.quoted.docstring.raw.multi.python keyword.control.flow.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -6735,10 +6735,10 @@
"c": " print(a)",
"t": "source.python string.quoted.docstring.raw.multi.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -6746,10 +6746,10 @@
"c": " 0",
"t": "source.python string.quoted.docstring.raw.multi.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -6757,10 +6757,10 @@
"c": " 1",
"t": "source.python string.quoted.docstring.raw.multi.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -6768,10 +6768,10 @@
"c": "'''",
"t": "source.python string.quoted.docstring.raw.multi.python punctuation.definition.string.end.python",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
}
diff --git a/extensions/r/test/colorize-results/test_r.json b/extensions/r/test/colorize-results/test_r.json
index 81c0e0c882..2cba70d079 100644
--- a/extensions/r/test/colorize-results/test_r.json
+++ b/extensions/r/test/colorize-results/test_r.json
@@ -3,10 +3,10 @@
"c": "#",
"t": "source.r comment.line.number-sign.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -14,10 +14,10 @@
"c": " © Microsoft. All rights reserved.",
"t": "source.r comment.line.number-sign.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -25,10 +25,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -36,10 +36,10 @@
"c": " Add together two numbers.",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -47,10 +47,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -58,10 +58,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -69,10 +69,10 @@
"c": " ",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -80,10 +80,10 @@
"c": "@param",
"t": "source.r comment.line.roxygen.r keyword.other.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -91,10 +91,10 @@
"c": " ",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -102,10 +102,10 @@
"c": "x",
"t": "source.r comment.line.roxygen.r variable.parameter.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -113,10 +113,10 @@
"c": " A number.",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -124,10 +124,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -135,10 +135,10 @@
"c": " ",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -146,10 +146,10 @@
"c": "@param",
"t": "source.r comment.line.roxygen.r keyword.other.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -157,10 +157,10 @@
"c": " ",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -168,10 +168,10 @@
"c": "y",
"t": "source.r comment.line.roxygen.r variable.parameter.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -179,10 +179,10 @@
"c": " A number.",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -190,10 +190,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -201,10 +201,10 @@
"c": " ",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -212,10 +212,10 @@
"c": "@return",
"t": "source.r comment.line.roxygen.r keyword.other.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -223,10 +223,10 @@
"c": " The sum of \\code{x} and \\code{y}.",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -234,10 +234,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -245,10 +245,10 @@
"c": " ",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -256,10 +256,10 @@
"c": "@examples",
"t": "source.r comment.line.roxygen.r keyword.other.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -267,10 +267,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -278,10 +278,10 @@
"c": " add(1, 1)",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -289,10 +289,10 @@
"c": "#'",
"t": "source.r comment.line.roxygen.r punctuation.definition.comment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -300,10 +300,10 @@
"c": " add(10, 1)",
"t": "source.r comment.line.roxygen.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -311,10 +311,10 @@
"c": "add",
"t": "source.r meta.function.r entity.name.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.function: #DCDCAA",
+ "light_plus": "entity.name.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "entity.name.function: #DCDCAA"
}
},
@@ -322,10 +322,10 @@
"c": " ",
"t": "source.r meta.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -333,10 +333,10 @@
"c": "<-",
"t": "source.r meta.function.r keyword.operator.assignment.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -344,10 +344,10 @@
"c": " ",
"t": "source.r meta.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -355,10 +355,10 @@
"c": "function",
"t": "source.r meta.function.r meta.function.r keyword.control.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -366,10 +366,10 @@
"c": "(",
"t": "source.r meta.function.r meta.function.r punctuation.section.parens.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -377,10 +377,10 @@
"c": "x",
"t": "source.r meta.function.r meta.function.r meta.function.parameters.r variable.parameter.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -388,10 +388,10 @@
"c": ",",
"t": "source.r meta.function.r meta.function.r meta.function.parameters.r punctuation.separator.parameters.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -399,10 +399,10 @@
"c": " ",
"t": "source.r meta.function.r meta.function.r meta.function.parameters.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -410,10 +410,10 @@
"c": "y",
"t": "source.r meta.function.r meta.function.r meta.function.parameters.r variable.parameter.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -421,10 +421,10 @@
"c": ")",
"t": "source.r meta.function.r meta.function.r punctuation.section.parens.end.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -432,10 +432,10 @@
"c": " ",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -443,10 +443,10 @@
"c": "{",
"t": "source.r punctuation.section.braces.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -454,10 +454,10 @@
"c": " ",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -465,10 +465,10 @@
"c": "x",
"t": "source.r variable.other.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -476,10 +476,10 @@
"c": " ",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -487,10 +487,10 @@
"c": "+",
"t": "source.r keyword.operator.arithmetic.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -498,10 +498,10 @@
"c": " ",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -509,10 +509,10 @@
"c": "y",
"t": "source.r variable.other.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -520,10 +520,10 @@
"c": "}",
"t": "source.r punctuation.section.braces.end.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -531,10 +531,10 @@
"c": "add",
"t": "source.r meta.function-call.r variable.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -542,10 +542,10 @@
"c": "(",
"t": "source.r meta.function-call.r punctuation.section.parens.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -553,10 +553,10 @@
"c": "1",
"t": "source.r meta.function-call.r meta.function-call.arguments.r constant.numeric.float.decimal.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -564,10 +564,10 @@
"c": ",",
"t": "source.r meta.function-call.r meta.function-call.arguments.r punctuation.separator.parameters.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -575,10 +575,10 @@
"c": " ",
"t": "source.r meta.function-call.r meta.function-call.arguments.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -586,10 +586,10 @@
"c": "-",
"t": "source.r meta.function-call.r meta.function-call.arguments.r keyword.operator.arithmetic.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -597,10 +597,10 @@
"c": "2",
"t": "source.r meta.function-call.r meta.function-call.arguments.r constant.numeric.float.decimal.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -608,10 +608,10 @@
"c": ",",
"t": "source.r meta.function-call.r meta.function-call.arguments.r punctuation.separator.parameters.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -619,10 +619,10 @@
"c": " ",
"t": "source.r meta.function-call.r meta.function-call.arguments.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -630,10 +630,10 @@
"c": "2.0",
"t": "source.r meta.function-call.r meta.function-call.arguments.r constant.numeric.float.decimal.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -641,10 +641,10 @@
"c": ")",
"t": "source.r meta.function-call.r punctuation.definition.parameters.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -652,10 +652,10 @@
"c": "add",
"t": "source.r meta.function-call.r variable.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -663,10 +663,10 @@
"c": "(",
"t": "source.r meta.function-call.r punctuation.section.parens.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -674,10 +674,10 @@
"c": "1.0e10",
"t": "source.r meta.function-call.r meta.function-call.arguments.r constant.numeric.float.decimal.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -685,10 +685,10 @@
"c": ",",
"t": "source.r meta.function-call.r meta.function-call.arguments.r punctuation.separator.parameters.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -696,10 +696,10 @@
"c": " ",
"t": "source.r meta.function-call.r meta.function-call.arguments.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -707,10 +707,10 @@
"c": "2.0e10",
"t": "source.r meta.function-call.r meta.function-call.arguments.r constant.numeric.float.decimal.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -718,10 +718,10 @@
"c": ")",
"t": "source.r meta.function-call.r punctuation.definition.parameters.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -729,10 +729,10 @@
"c": "paste",
"t": "source.r support.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -740,10 +740,10 @@
"c": "(",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -751,10 +751,10 @@
"c": "\"",
"t": "source.r string.quoted.double.r punctuation.definition.string.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -762,10 +762,10 @@
"c": "one",
"t": "source.r string.quoted.double.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -773,10 +773,10 @@
"c": "\"",
"t": "source.r string.quoted.double.r punctuation.definition.string.end.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -784,10 +784,10 @@
"c": ", ",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -795,10 +795,10 @@
"c": "NULL",
"t": "source.r constant.language.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.language: #569CD6",
+ "light_plus": "constant.language: #0000FF",
+ "dark_vs": "constant.language: #569CD6",
+ "light_vs": "constant.language: #0000FF",
"hc_black": "constant.language: #569CD6"
}
},
@@ -806,10 +806,10 @@
"c": ")",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -817,10 +817,10 @@
"c": "paste",
"t": "source.r support.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -828,10 +828,10 @@
"c": "(",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -839,10 +839,10 @@
"c": "NA",
"t": "source.r constant.language.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.language: #569CD6",
+ "light_plus": "constant.language: #0000FF",
+ "dark_vs": "constant.language: #569CD6",
+ "light_vs": "constant.language: #0000FF",
"hc_black": "constant.language: #569CD6"
}
},
@@ -850,10 +850,10 @@
"c": ", ",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -861,10 +861,10 @@
"c": "'",
"t": "source.r string.quoted.single.r punctuation.definition.string.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -872,10 +872,10 @@
"c": "two",
"t": "source.r string.quoted.single.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -883,10 +883,10 @@
"c": "'",
"t": "source.r string.quoted.single.r punctuation.definition.string.end.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -894,10 +894,10 @@
"c": ")",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -905,10 +905,10 @@
"c": "paste",
"t": "source.r support.function.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -916,10 +916,10 @@
"c": "(",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -927,10 +927,10 @@
"c": "\"",
"t": "source.r string.quoted.double.r punctuation.definition.string.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -938,10 +938,10 @@
"c": "multi-",
"t": "source.r string.quoted.double.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -949,10 +949,10 @@
"c": " line",
"t": "source.r string.quoted.double.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -960,10 +960,10 @@
"c": "\"",
"t": "source.r string.quoted.double.r punctuation.definition.string.end.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -971,10 +971,10 @@
"c": ",",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -982,10 +982,10 @@
"c": " ",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -993,10 +993,10 @@
"c": "'",
"t": "source.r string.quoted.single.r punctuation.definition.string.begin.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1004,10 +1004,10 @@
"c": "multi-",
"t": "source.r string.quoted.single.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1015,10 +1015,10 @@
"c": " line",
"t": "source.r string.quoted.single.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1026,10 +1026,10 @@
"c": "'",
"t": "source.r string.quoted.single.r punctuation.definition.string.end.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string: #A31515",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string: #A31515",
"hc_black": "string: #CE9178"
}
},
@@ -1037,10 +1037,10 @@
"c": ")",
"t": "source.r",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
}
diff --git a/extensions/sql/test/colorize-results/test_sql.json b/extensions/sql/test/colorize-results/test_sql.json
index 1c3674d308..da116cea9c 100644
--- a/extensions/sql/test/colorize-results/test_sql.json
+++ b/extensions/sql/test/colorize-results/test_sql.json
@@ -3,10 +3,10 @@
"c": "CREATE",
"t": "source.sql keyword.other.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -14,10 +14,10 @@
"c": " VIEW METRIC_STATS (ID, ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": "MONTH",
"t": "source.sql support.function.datetime.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -36,10 +36,10 @@
"c": ", TEMP_C, RAIN_C) ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": "AS",
"t": "source.sql keyword.other.alias.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -58,10 +58,10 @@
"c": "SELECT",
"t": "source.sql keyword.other.DML.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -69,10 +69,10 @@
"c": " ID,",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": "MONTH",
"t": "source.sql support.function.datetime.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "support.function: #DCDCAA",
+ "light_plus": "support.function: #795E26",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "support.function: #DCDCAA"
}
},
@@ -91,10 +91,10 @@
"c": ",",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": "(TEMP_F ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -113,10 +113,10 @@
"c": "-",
"t": "source.sql keyword.operator.math.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -124,10 +124,10 @@
"c": " ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -135,10 +135,10 @@
"c": "32",
"t": "source.sql constant.numeric.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -146,10 +146,10 @@
"c": ") ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "*",
"t": "source.sql keyword.operator.star.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -168,10 +168,10 @@
"c": " ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -179,10 +179,10 @@
"c": "5",
"t": "source.sql constant.numeric.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -190,10 +190,10 @@
"c": " ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -201,10 +201,10 @@
"c": "/",
"t": "source.sql keyword.operator.math.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -212,10 +212,10 @@
"c": "9",
"t": "source.sql constant.numeric.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -223,10 +223,10 @@
"c": ",",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -234,10 +234,10 @@
"c": "RAIN_I ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -245,10 +245,10 @@
"c": "*",
"t": "source.sql keyword.operator.star.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.operator: #D4D4D4",
+ "light_plus": "keyword.operator: #000000",
+ "dark_vs": "keyword.operator: #D4D4D4",
+ "light_vs": "keyword.operator: #000000",
"hc_black": "keyword.operator: #D4D4D4"
}
},
@@ -256,10 +256,10 @@
"c": " ",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": "0",
"t": "source.sql constant.numeric.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -278,10 +278,10 @@
"c": ".",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -289,10 +289,10 @@
"c": "3937",
"t": "source.sql constant.numeric.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -300,10 +300,10 @@
"c": "FROM",
"t": "source.sql keyword.other.DML.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword: #569CD6",
+ "light_plus": "keyword: #0000FF",
+ "dark_vs": "keyword: #569CD6",
+ "light_vs": "keyword: #0000FF",
"hc_black": "keyword: #569CD6"
}
},
@@ -311,10 +311,10 @@
"c": " STATS;",
"t": "source.sql",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
}
diff --git a/extensions/theme-defaults/package.json b/extensions/theme-defaults/package.json
index 39c00d37b7..a9f87d81ee 100644
--- a/extensions/theme-defaults/package.json
+++ b/extensions/theme-defaults/package.json
@@ -1,7 +1,7 @@
{
"name": "theme-defaults",
- "displayName": "High Contrast Theme",
- "description": "High Contrast theme",
+ "displayName": "%displayName%",
+ "description": "%description%",
"categories": [ "Themes" ],
"version": "1.0.0",
"publisher": "vscode",
diff --git a/extensions/typescript-language-features/src/tsServer/serverError.ts b/extensions/typescript-language-features/src/tsServer/serverError.ts
deleted file mode 100644
index 794972995a..0000000000
--- a/extensions/typescript-language-features/src/tsServer/serverError.ts
+++ /dev/null
@@ -1,66 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the Source EULA. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-import * as Proto from '../protocol';
-import { escapeRegExp } from '../utils/regexp';
-import { TypeScriptVersion } from '../utils/versionProvider';
-
-export class TypeScriptServerError extends Error {
- public static create(
- serverId: string,
- version: TypeScriptVersion,
- response: Proto.Response
- ): TypeScriptServerError {
- const parsedResult = TypeScriptServerError.parseErrorText(version, response);
- return new TypeScriptServerError(serverId, version, response, parsedResult ? parsedResult.message : undefined, parsedResult ? parsedResult.stack : undefined);
- }
-
- private constructor(
- serverId: string,
- version: TypeScriptVersion,
- private readonly response: Proto.Response,
- public readonly serverMessage: string | undefined,
- public readonly serverStack: string | undefined
- ) {
- super(`<${serverId}> TypeScript Server Error (${version.versionString})\n${serverMessage}\n${serverStack}`);
- }
-
- public get serverErrorText() { return this.response.message; }
-
- public get serverCommand() { return this.response.command; }
-
- /**
- * Given a `errorText` from a tsserver request indicating failure in handling a request,
- * prepares a payload for telemetry-logging.
- */
- private static parseErrorText(version: TypeScriptVersion, response: Proto.Response) {
- const errorText = response.message;
- if (errorText) {
- const errorPrefix = 'Error processing request. ';
- if (errorText.startsWith(errorPrefix)) {
- const prefixFreeErrorText = errorText.substr(errorPrefix.length);
- const newlineIndex = prefixFreeErrorText.indexOf('\n');
- if (newlineIndex >= 0) {
- // Newline expected between message and stack.
- return {
- message: prefixFreeErrorText.substring(0, newlineIndex),
- stack: TypeScriptServerError.normalizeMessageStack(version, prefixFreeErrorText.substring(newlineIndex + 1))
- };
- }
- }
- }
- return undefined;
- }
-
- /**
- * Try to replace full TS Server paths with 'tsserver.js' so that we don't have to post process the data as much
- */
- private static normalizeMessageStack(version: TypeScriptVersion, message: string | undefined) {
- if (!message) {
- return '';
- }
- return message.replace(new RegExp(`${escapeRegExp(version.path)}[/\\\\]tsserver.js:`, 'gi'), 'tsserver.js:');
- }
-}
diff --git a/extensions/typescript-language-features/src/tsServer/spawner.ts b/extensions/typescript-language-features/src/tsServer/spawner.ts
deleted file mode 100644
index 64b6a011af..0000000000
--- a/extensions/typescript-language-features/src/tsServer/spawner.ts
+++ /dev/null
@@ -1,229 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the Source EULA. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-import * as child_process from 'child_process';
-import * as path from 'path';
-import * as stream from 'stream';
-import * as vscode from 'vscode';
-import * as Proto from '../protocol';
-import API from '../utils/api';
-import { TsServerLogLevel, TypeScriptServiceConfiguration } from '../utils/configuration';
-import * as electron from '../utils/electron';
-import LogDirectoryProvider from '../utils/logDirectoryProvider';
-import Logger from '../utils/logger';
-import { TypeScriptPluginPathsProvider } from '../utils/pluginPathsProvider';
-import { PluginManager } from '../utils/plugins';
-import TelemetryReporter from '../utils/telemetry';
-import Tracer from '../utils/tracer';
-import { TypeScriptVersion, TypeScriptVersionProvider } from '../utils/versionProvider';
-import { ITypeScriptServer, PipeRequestCanceller, ProcessBasedTsServer, SyntaxRoutingTsServer, TsServerProcess } from './server';
-
-type ServerKind = 'main' | 'syntax' | 'semantic';
-
-export class TypeScriptServerSpawner {
- public constructor(
- private readonly _versionProvider: TypeScriptVersionProvider,
- private readonly _logDirectoryProvider: LogDirectoryProvider,
- private readonly _pluginPathsProvider: TypeScriptPluginPathsProvider,
- private readonly _logger: Logger,
- private readonly _telemetryReporter: TelemetryReporter,
- private readonly _tracer: Tracer,
- ) { }
-
- public spawn(
- version: TypeScriptVersion,
- configuration: TypeScriptServiceConfiguration,
- pluginManager: PluginManager
- ): ITypeScriptServer {
- if (this.shouldUseSeparateSyntaxServer(version, configuration)) {
- const syntaxServer = this.spawnTsServer('syntax', version, configuration, pluginManager);
- const semanticServer = this.spawnTsServer('semantic', version, configuration, pluginManager);
- return new SyntaxRoutingTsServer(syntaxServer, semanticServer);
- }
-
- return this.spawnTsServer('main', version, configuration, pluginManager);
- }
-
- private shouldUseSeparateSyntaxServer(
- version: TypeScriptVersion,
- configuration: TypeScriptServiceConfiguration,
- ): boolean {
- return configuration.useSeparateSyntaxServer && !!version.apiVersion && version.apiVersion.gte(API.v340);
- }
-
- private spawnTsServer(
- kind: ServerKind,
- version: TypeScriptVersion,
- configuration: TypeScriptServiceConfiguration,
- pluginManager: PluginManager,
- ): ITypeScriptServer {
- const apiVersion = version.apiVersion || API.defaultVersion;
-
- const { args, cancellationPipeName, tsServerLogFile } = this.getTsServerArgs(kind, configuration, version, apiVersion, pluginManager);
-
- if (TypeScriptServerSpawner.isLoggingEnabled(apiVersion, configuration)) {
- if (tsServerLogFile) {
- this._logger.info(`<${kind}> Log file: ${tsServerLogFile}`);
- } else {
- this._logger.error(`<${kind}> Could not create log directory`);
- }
- }
-
- this._logger.info(`<${kind}> Forking...`);
- const childProcess = electron.fork(version.tsServerPath, args, this.getForkOptions(kind));
- this._logger.info(`<${kind}> Starting...`);
-
- return new ProcessBasedTsServer(
- kind,
- new ChildServerProcess(childProcess),
- tsServerLogFile,
- new PipeRequestCanceller(kind, cancellationPipeName, this._tracer),
- version,
- this._telemetryReporter,
- this._tracer);
- }
-
- private getForkOptions(kind: ServerKind) {
- const debugPort = TypeScriptServerSpawner.getDebugPort(kind);
- const tsServerForkOptions: electron.ForkOptions = {
- execArgv: debugPort ? [`--inspect=${debugPort}`] : [],
- };
- return tsServerForkOptions;
- }
-
- private getTsServerArgs(
- kind: ServerKind,
- configuration: TypeScriptServiceConfiguration,
- currentVersion: TypeScriptVersion,
- apiVersion: API,
- pluginManager: PluginManager,
- ): { args: string[], cancellationPipeName: string | undefined, tsServerLogFile: string | undefined } {
- const args: string[] = [];
- let cancellationPipeName: string | undefined;
- let tsServerLogFile: string | undefined;
-
- if (kind === 'syntax') {
- args.push('--syntaxOnly');
- }
-
- if (apiVersion.gte(API.v206)) {
- if (apiVersion.gte(API.v250)) {
- args.push('--useInferredProjectPerProjectRoot');
- } else {
- args.push('--useSingleInferredProject');
- }
-
- if (configuration.disableAutomaticTypeAcquisition || kind === 'syntax') {
- args.push('--disableAutomaticTypingAcquisition');
- }
- }
-
- if (apiVersion.gte(API.v208) && kind !== 'syntax') {
- args.push('--enableTelemetry');
- }
-
- if (apiVersion.gte(API.v222)) {
- cancellationPipeName = electron.getTempFile('tscancellation');
- args.push('--cancellationPipeName', cancellationPipeName + '*');
- }
-
- if (TypeScriptServerSpawner.isLoggingEnabled(apiVersion, configuration)) {
- const logDir = this._logDirectoryProvider.getNewLogDirectory();
- if (logDir) {
- tsServerLogFile = path.join(logDir, `tsserver.log`);
- args.push('--logVerbosity', TsServerLogLevel.toString(configuration.tsServerLogLevel));
- args.push('--logFile', tsServerLogFile);
- }
- }
-
- if (apiVersion.gte(API.v230)) {
- const pluginPaths = this._pluginPathsProvider.getPluginPaths();
-
- if (pluginManager.plugins.length) {
- args.push('--globalPlugins', pluginManager.plugins.map(x => x.name).join(','));
-
- const isUsingBundledTypeScriptVersion = currentVersion.path === this._versionProvider.defaultVersion.path;
- for (const plugin of pluginManager.plugins) {
- if (isUsingBundledTypeScriptVersion || plugin.enableForWorkspaceTypeScriptVersions) {
- pluginPaths.push(plugin.path);
- }
- }
- }
-
- if (pluginPaths.length !== 0) {
- args.push('--pluginProbeLocations', pluginPaths.join(','));
- }
- }
-
- if (apiVersion.gte(API.v234)) {
- if (configuration.npmLocation) {
- args.push('--npmLocation', `"${configuration.npmLocation}"`);
- }
- }
-
- if (apiVersion.gte(API.v260)) {
- args.push('--locale', TypeScriptServerSpawner.getTsLocale(configuration));
- }
-
- if (apiVersion.gte(API.v291)) {
- args.push('--noGetErrOnBackgroundUpdate');
- }
-
- if (apiVersion.gte(API.v345)) {
- args.push('--validateDefaultNpmLocation');
- }
-
- return { args, cancellationPipeName, tsServerLogFile };
- }
-
- private static getDebugPort(kind: ServerKind): number | undefined {
- if (kind === 'syntax') {
- // We typically only want to debug the main semantic server
- return undefined;
- }
- const value = process.env['TSS_DEBUG'];
- if (value) {
- const port = parseInt(value);
- if (!isNaN(port)) {
- return port;
- }
- }
- return undefined;
- }
-
- private static isLoggingEnabled(apiVersion: API, configuration: TypeScriptServiceConfiguration) {
- return apiVersion.gte(API.v222) &&
- configuration.tsServerLogLevel !== TsServerLogLevel.Off;
- }
-
- private static getTsLocale(configuration: TypeScriptServiceConfiguration): string {
- return configuration.locale
- ? configuration.locale
- : vscode.env.language;
- }
-}
-
-class ChildServerProcess implements TsServerProcess {
-
- public constructor(
- private readonly _process: child_process.ChildProcess,
- ) { }
-
- get stdout(): stream.Readable { return this._process.stdout!; }
-
- write(serverRequest: Proto.Request): void {
- this._process.stdin!.write(JSON.stringify(serverRequest) + '\r\n', 'utf8');
- }
-
- on(name: 'exit', handler: (code: number | null) => void): void;
- on(name: 'error', handler: (error: Error) => void): void;
- on(name: any, handler: any) {
- this._process.on(name, handler);
- }
-
- kill(): void {
- this._process.kill();
- }
-}
\ No newline at end of file
diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts
deleted file mode 100644
index 01155ce6b0..0000000000
--- a/extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts
+++ /dev/null
@@ -1,343 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the Source EULA. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-import { window, Terminal, TerminalVirtualProcess, EventEmitter, TerminalDimensions, workspace, ConfigurationTarget } from 'vscode';
-import { doesNotThrow, equal, ok } from 'assert';
-
-suite('window namespace tests', () => {
- suiteSetup(async () => {
- // Disable conpty in integration tests because of https://github.com/microsoft/vscode/issues/76548
- await workspace.getConfiguration('terminal.integrated').update('windowsEnableConpty', false, ConfigurationTarget.Global);
- });
- suite('Terminal', () => {
- test('sendText immediately after createTerminal should not throw', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(terminal, term);
- terminal.dispose();
- reg1.dispose();
- const reg2 = window.onDidCloseTerminal(() => {
- reg2.dispose();
- done();
- });
- });
- const terminal = window.createTerminal();
- doesNotThrow(terminal.sendText.bind(terminal, 'echo "foo"'));
- });
-
- test('onDidCloseTerminal event fires when terminal is disposed', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(terminal, term);
- terminal.dispose();
- reg1.dispose();
- const reg2 = window.onDidCloseTerminal(() => {
- reg2.dispose();
- done();
- });
- });
- const terminal = window.createTerminal();
- });
-
- test('processId immediately after createTerminal should fetch the pid', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(terminal, term);
- reg1.dispose();
- terminal.processId.then(id => {
- ok(id > 0);
- terminal.dispose();
- const reg2 = window.onDidCloseTerminal(() => {
- reg2.dispose();
- done();
- });
- });
- });
- const terminal = window.createTerminal();
- });
-
- test('name in constructor should set terminal.name', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(terminal, term);
- terminal.dispose();
- reg1.dispose();
- const reg2 = window.onDidCloseTerminal(() => {
- reg2.dispose();
- done();
- });
- });
- const terminal = window.createTerminal('a');
- equal(terminal.name, 'a');
- });
-
- test('onDidOpenTerminal should fire when a terminal is created', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(term.name, 'b');
- reg1.dispose();
- const reg2 = window.onDidCloseTerminal(() => {
- reg2.dispose();
- done();
- });
- terminal.dispose();
- });
- const terminal = window.createTerminal('b');
- });
-
- test('Terminal.sendText should fire Terminal.onInput', (done) => {
- const reg1 = window.onDidOpenTerminal(terminal => {
- reg1.dispose();
- const reg2 = renderer.onDidAcceptInput(data => {
- equal(data, 'bar');
- reg2.dispose();
- const reg3 = window.onDidCloseTerminal(() => {
- reg3.dispose();
- done();
- });
- terminal.dispose();
- });
- terminal.sendText('bar', false);
- });
- const renderer = window.createTerminalRenderer('foo');
- });
-
- // test('onDidChangeActiveTerminal should fire when new terminals are created', (done) => {
- // const reg1 = window.onDidChangeActiveTerminal((active: Terminal | undefined) => {
- // equal(active, terminal);
- // equal(active, window.activeTerminal);
- // reg1.dispose();
- // const reg2 = window.onDidChangeActiveTerminal((active: Terminal | undefined) => {
- // equal(active, undefined);
- // equal(active, window.activeTerminal);
- // reg2.dispose();
- // done();
- // });
- // terminal.dispose();
- // });
- // const terminal = window.createTerminal();
- // terminal.show();
- // });
-
- // test('onDidChangeTerminalDimensions should fire when new terminals are created', (done) => {
- // const reg1 = window.onDidChangeTerminalDimensions(async (event: TerminalDimensionsChangeEvent) => {
- // equal(event.terminal, terminal1);
- // equal(typeof event.dimensions.columns, 'number');
- // equal(typeof event.dimensions.rows, 'number');
- // ok(event.dimensions.columns > 0);
- // ok(event.dimensions.rows > 0);
- // reg1.dispose();
- // let terminal2: Terminal;
- // const reg2 = window.onDidOpenTerminal((newTerminal) => {
- // // This is guarantees to fire before dimensions change event
- // if (newTerminal !== terminal1) {
- // terminal2 = newTerminal;
- // reg2.dispose();
- // }
- // });
- // let firstCalled = false;
- // let secondCalled = false;
- // const reg3 = window.onDidChangeTerminalDimensions((event: TerminalDimensionsChangeEvent) => {
- // if (event.terminal === terminal1) {
- // // The original terminal should fire dimension change after a split
- // firstCalled = true;
- // } else if (event.terminal !== terminal1) {
- // // The new split terminal should fire dimension change
- // secondCalled = true;
- // }
- // if (firstCalled && secondCalled) {
- // let firstDisposed = false;
- // let secondDisposed = false;
- // const reg4 = window.onDidCloseTerminal(term => {
- // if (term === terminal1) {
- // firstDisposed = true;
- // }
- // if (term === terminal2) {
- // secondDisposed = true;
- // }
- // if (firstDisposed && secondDisposed) {
- // reg4.dispose();
- // done();
- // }
- // });
- // terminal1.dispose();
- // terminal2.dispose();
- // reg3.dispose();
- // }
- // });
- // await timeout(500);
- // commands.executeCommand('workbench.action.terminal.split');
- // });
- // const terminal1 = window.createTerminal({ name: 'test' });
- // terminal1.show();
- // });
-
- suite('hideFromUser', () => {
- // test('should fire onDidWriteData correctly', done => {
- // const terminal = window.createTerminal({ name: 'bg', hideFromUser: true });
- // let data = '';
- // terminal.onDidWriteData(e => {
- // data += e;
- // if (data.indexOf('foo') !== -1) {
- // const reg3 = window.onDidCloseTerminal(() => {
- // reg3.dispose();
- // done();
- // });
- // terminal.dispose();
- // }
- // });
- // terminal.sendText('foo');
- // });
-
- test('should be available to terminals API', done => {
- const terminal = window.createTerminal({ name: 'bg', hideFromUser: true });
- window.onDidOpenTerminal(t => {
- equal(t, terminal);
- equal(t.name, 'bg');
- ok(window.terminals.indexOf(terminal) !== -1);
- const reg3 = window.onDidCloseTerminal(() => {
- reg3.dispose();
- done();
- });
- terminal.dispose();
- });
- });
- });
-
- suite('Terminal renderers (deprecated)', () => {
- test('should fire onDidOpenTerminal and onDidCloseTerminal from createTerminalRenderer terminal', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(term.name, 'c');
- reg1.dispose();
- const reg2 = window.onDidCloseTerminal(() => {
- reg2.dispose();
- done();
- });
- term.dispose();
- });
- window.createTerminalRenderer('c');
- });
-
- test('should get maximum dimensions set when shown', (done) => {
- let terminal: Terminal;
- const reg1 = window.onDidOpenTerminal(term => {
- reg1.dispose();
- term.show();
- terminal = term;
- });
- const renderer = window.createTerminalRenderer('foo');
- const reg2 = renderer.onDidChangeMaximumDimensions(dimensions => {
- ok(dimensions.columns > 0);
- ok(dimensions.rows > 0);
- reg2.dispose();
- const reg3 = window.onDidCloseTerminal(() => {
- reg3.dispose();
- done();
- });
- terminal.dispose();
- });
- });
-
- test('should fire Terminal.onData on write', (done) => {
- const reg1 = window.onDidOpenTerminal(terminal => {
- reg1.dispose();
- const reg2 = terminal.onDidWriteData(data => {
- equal(data, 'bar');
- reg2.dispose();
- const reg3 = window.onDidCloseTerminal(() => {
- reg3.dispose();
- done();
- });
- terminal.dispose();
- });
- renderer.write('bar');
- });
- const renderer = window.createTerminalRenderer('foo');
- });
- });
-
- suite('Virtual process terminals', () => {
- test('should fire onDidOpenTerminal and onDidCloseTerminal', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(term.name, 'c');
- reg1.dispose();
- const reg2 = window.onDidCloseTerminal(() => {
- reg2.dispose();
- done();
- });
- term.dispose();
- });
- const virtualProcess: TerminalVirtualProcess = {
- onDidWrite: new EventEmitter().event
- };
- window.createTerminal({ name: 'c', virtualProcess });
- });
-
- test('should fire Terminal.onData on write', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(terminal, term);
- reg1.dispose();
- const reg2 = terminal.onDidWriteData(data => {
- equal(data, 'bar');
- reg2.dispose();
- const reg3 = window.onDidCloseTerminal(() => {
- reg3.dispose();
- done();
- });
- terminal.dispose();
- });
- writeEmitter.fire('bar');
- });
- const writeEmitter = new EventEmitter();
- const virtualProcess: TerminalVirtualProcess = {
- onDidWrite: writeEmitter.event
- };
- const terminal = window.createTerminal({ name: 'foo', virtualProcess });
- });
-
- test('should fire provide dimensions on start as the terminal has been shown', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(terminal, term);
- reg1.dispose();
- });
- const virtualProcess: TerminalVirtualProcess = {
- onDidWrite: new EventEmitter().event,
- start: (dimensions) => {
- ok(dimensions!.columns > 0);
- ok(dimensions!.rows > 0);
- const reg3 = window.onDidCloseTerminal(() => {
- reg3.dispose();
- done();
- });
- terminal.dispose();
- }
- };
- const terminal = window.createTerminal({ name: 'foo', virtualProcess });
- });
-
- test('should respect dimension overrides', (done) => {
- const reg1 = window.onDidOpenTerminal(term => {
- equal(terminal, term);
- reg1.dispose();
- term.show();
- const reg2 = window.onDidChangeTerminalDimensions(e => {
- equal(e.dimensions.columns, 10);
- equal(e.dimensions.rows, 5);
- equal(e.terminal, terminal);
- reg2.dispose();
- const reg3 = window.onDidCloseTerminal(() => {
- reg3.dispose();
- done();
- });
- terminal.dispose();
- });
- overrideDimensionsEmitter.fire({ columns: 10, rows: 5 });
- });
- const writeEmitter = new EventEmitter();
- const overrideDimensionsEmitter = new EventEmitter();
- const virtualProcess: TerminalVirtualProcess = {
- onDidWrite: writeEmitter.event,
- onDidOverrideDimensions: overrideDimensionsEmitter.event
- };
- const terminal = window.createTerminal({ name: 'foo', virtualProcess });
- });
- });
- });
-});
diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/workspace.fs.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/workspace.fs.test.ts
deleted file mode 100644
index 03eb6c8d55..0000000000
--- a/extensions/vscode-api-tests/src/singlefolder-tests/workspace.fs.test.ts
+++ /dev/null
@@ -1,141 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the Source EULA. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-import * as assert from 'assert';
-import * as vscode from 'vscode';
-import { posix } from 'path';
-
-suite('workspace-fs', () => {
-
- let root: vscode.Uri;
-
- suiteSetup(function () {
- root = vscode.workspace.workspaceFolders![0]!.uri;
- });
-
- test('fs.stat', async function () {
- const stat = await vscode.workspace.fs.stat(root);
- assert.equal(stat.type, vscode.FileType.Directory);
-
- assert.equal(typeof stat.size, 'number');
- assert.equal(typeof stat.mtime, 'number');
- assert.equal(typeof stat.ctime, 'number');
-
-
- const entries = await vscode.workspace.fs.readDirectory(root);
- assert.ok(entries.length > 0);
-
- // find far.js
- const tuple = entries.find(tuple => tuple[0] === 'far.js')!;
- assert.ok(tuple);
- assert.equal(tuple[0], 'far.js');
- assert.equal(tuple[1], vscode.FileType.File);
- });
-
- test('fs.stat - bad scheme', async function () {
- try {
- await vscode.workspace.fs.stat(vscode.Uri.parse('foo:/bar/baz/test.txt'));
- assert.ok(false);
- } catch {
- assert.ok(true);
- }
- });
-
- test('fs.stat - missing file', async function () {
- try {
- await vscode.workspace.fs.stat(root.with({ path: root.path + '.bad' }));
- assert.ok(false);
- } catch (e) {
- assert.ok(true);
- }
- });
-
- test('fs.write/stat/delete', async function () {
-
- const uri = root.with({ path: posix.join(root.path, 'new.file') });
- await vscode.workspace.fs.writeFile(uri, Buffer.from('HELLO'));
-
- const stat = await vscode.workspace.fs.stat(uri);
- assert.equal(stat.type, vscode.FileType.File);
-
- await vscode.workspace.fs.delete(uri);
-
- try {
- await vscode.workspace.fs.stat(uri);
- assert.ok(false);
- } catch {
- assert.ok(true);
- }
- });
-
- test('fs.delete folder', async function () {
-
- const folder = root.with({ path: posix.join(root.path, 'folder') });
- const file = root.with({ path: posix.join(root.path, 'folder/file') });
-
- await vscode.workspace.fs.createDirectory(folder);
- await vscode.workspace.fs.writeFile(file, Buffer.from('FOO'));
-
- await vscode.workspace.fs.stat(folder);
- await vscode.workspace.fs.stat(file);
-
- // ensure non empty folder cannot be deleted
- try {
- await vscode.workspace.fs.delete(folder, { recursive: false, useTrash: false });
- assert.ok(false);
- } catch {
- await vscode.workspace.fs.stat(folder);
- await vscode.workspace.fs.stat(file);
- }
-
- // ensure non empty folder cannot be deleted is DEFAULT
- try {
- await vscode.workspace.fs.delete(folder); // recursive: false as default
- assert.ok(false);
- } catch {
- await vscode.workspace.fs.stat(folder);
- await vscode.workspace.fs.stat(file);
- }
-
- // delete non empty folder with recursive-flag
- await vscode.workspace.fs.delete(folder, { recursive: true, useTrash: false });
-
- // esnure folder/file are gone
- try {
- await vscode.workspace.fs.stat(folder);
- assert.ok(false);
- } catch {
- assert.ok(true);
- }
- try {
- await vscode.workspace.fs.stat(file);
- assert.ok(false);
- } catch {
- assert.ok(true);
- }
- });
-
- test('throws FileSystemError', async function () {
-
- try {
- await vscode.workspace.fs.stat(vscode.Uri.file(`/c468bf16-acfd-4591-825e-2bcebba508a3/71b1f274-91cb-4c19-af00-8495eaab4b73/4b60cb48-a6f2-40ea-9085-0936f4a8f59a.tx6`));
- assert.ok(false);
- } catch (e) {
- assert.ok(e instanceof vscode.FileSystemError);
- assert.equal(e.name, vscode.FileSystemError.FileNotFound().name);
- }
- });
-
- test('throws FileSystemError', async function () {
-
- try {
- await vscode.workspace.fs.stat(vscode.Uri.parse('foo:/bar'));
- assert.ok(false);
- } catch (e) {
- assert.ok(e instanceof vscode.FileSystemError);
- assert.equal(e.name, vscode.FileSystemError.Unavailable().name);
- }
- });
-});
diff --git a/extensions/xml/test/colorize-results/test-7115_xml.json b/extensions/xml/test/colorize-results/test-7115_xml.json
index 451e0e64dc..5a14d78ce7 100644
--- a/extensions/xml/test/colorize-results/test-7115_xml.json
+++ b/extensions/xml/test/colorize-results/test-7115_xml.json
@@ -3,10 +3,10 @@
"c": "",
"t": "text.xml meta.tag.preprocessor.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -14,10 +14,10 @@
"c": "xml",
"t": "text.xml meta.tag.preprocessor.xml entity.name.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -25,10 +25,10 @@
"c": " version",
"t": "text.xml meta.tag.preprocessor.xml entity.other.attribute-name.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -36,10 +36,10 @@
"c": "=",
"t": "text.xml meta.tag.preprocessor.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": "\"",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -58,10 +58,10 @@
"c": "1.0",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -69,10 +69,10 @@
"c": "\"",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -80,10 +80,10 @@
"c": " encoding",
"t": "text.xml meta.tag.preprocessor.xml entity.other.attribute-name.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -91,10 +91,10 @@
"c": "=",
"t": "text.xml meta.tag.preprocessor.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": "\"",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -113,10 +113,10 @@
"c": "utf-8",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -124,10 +124,10 @@
"c": "\"",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -135,10 +135,10 @@
"c": " standalone",
"t": "text.xml meta.tag.preprocessor.xml entity.other.attribute-name.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -146,10 +146,10 @@
"c": "=",
"t": "text.xml meta.tag.preprocessor.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "\"",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -168,10 +168,10 @@
"c": "no",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -179,10 +179,10 @@
"c": "\"",
"t": "text.xml meta.tag.preprocessor.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -190,10 +190,10 @@
"c": " ",
"t": "text.xml meta.tag.preprocessor.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -201,10 +201,10 @@
"c": "?>",
"t": "text.xml meta.tag.preprocessor.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -212,10 +212,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -223,10 +223,10 @@
"c": "WorkFine",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -234,10 +234,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -245,10 +245,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -256,10 +256,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -267,10 +267,10 @@
"c": "NoColorWithNonLatinCharacters_АБВ",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -278,10 +278,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -289,10 +289,10 @@
"c": "NextTagnotWork",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -300,10 +300,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -311,10 +311,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -322,10 +322,10 @@
"c": "something",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -333,10 +333,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -344,10 +344,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -355,10 +355,10 @@
"c": "Поле",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -366,10 +366,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -377,10 +377,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -388,10 +388,10 @@
"c": "tagnotwork",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -399,10 +399,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -410,10 +410,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -421,10 +421,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -432,10 +432,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -443,10 +443,10 @@
"c": "WorkFine",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -454,10 +454,10 @@
"c": "/>",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -465,10 +465,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -476,10 +476,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -487,10 +487,10 @@
"c": "Error_АБВГД",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -498,10 +498,10 @@
"c": "/>",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -509,10 +509,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -520,10 +520,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -531,10 +531,10 @@
"c": "NoColorWithNonLatinCharacters_АБВ",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -542,10 +542,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -553,10 +553,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -564,10 +564,10 @@
"c": "WorkFine",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -575,10 +575,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
}
diff --git a/extensions/xml/test/colorize-results/test_xml.json b/extensions/xml/test/colorize-results/test_xml.json
index 66550f2e22..b16beb8b12 100644
--- a/extensions/xml/test/colorize-results/test_xml.json
+++ b/extensions/xml/test/colorize-results/test_xml.json
@@ -3,10 +3,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -14,10 +14,10 @@
"c": "project",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -25,10 +25,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -36,10 +36,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -58,10 +58,10 @@
"c": "target",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -69,10 +69,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": "name",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -91,10 +91,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -113,10 +113,10 @@
"c": "jar",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -124,10 +124,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -135,10 +135,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -146,10 +146,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -168,10 +168,10 @@
"c": "mkdir",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -179,10 +179,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -190,10 +190,10 @@
"c": "dir",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -201,10 +201,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -223,10 +223,10 @@
"c": "build/jar",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -234,10 +234,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -245,10 +245,10 @@
"c": "/>",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -256,10 +256,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -278,10 +278,10 @@
"c": "jar",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -289,10 +289,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -300,10 +300,10 @@
"c": "destfile",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -311,10 +311,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -322,10 +322,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -333,10 +333,10 @@
"c": "build/jar/HelloWorld.jar",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -344,10 +344,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -355,10 +355,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -366,10 +366,10 @@
"c": "basedir",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -377,10 +377,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -388,10 +388,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -399,10 +399,10 @@
"c": "build/classes",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -410,10 +410,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -421,10 +421,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -432,10 +432,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -443,10 +443,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -454,10 +454,10 @@
"c": "manifest",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -465,10 +465,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -476,10 +476,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -487,10 +487,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -498,10 +498,10 @@
"c": "attribute",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -509,10 +509,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -520,10 +520,10 @@
"c": "name",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -531,10 +531,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -542,10 +542,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -553,10 +553,10 @@
"c": "Main-Class",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -564,10 +564,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -575,10 +575,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -586,10 +586,10 @@
"c": "value",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -597,10 +597,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -608,10 +608,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -619,10 +619,10 @@
"c": "oata.HelloWorld",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -630,10 +630,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -641,10 +641,10 @@
"c": "/>",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -652,10 +652,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -663,10 +663,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -674,10 +674,10 @@
"c": "manifest",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -685,10 +685,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -696,10 +696,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -707,10 +707,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -718,10 +718,10 @@
"c": "jar",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -729,10 +729,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -740,10 +740,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -751,10 +751,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -762,10 +762,10 @@
"c": "target",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -773,10 +773,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -784,10 +784,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -795,10 +795,10 @@
"c": "",
"t": "text.xml comment.block.xml punctuation.definition.comment.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -828,10 +828,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -839,10 +839,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -850,10 +850,10 @@
"c": "character",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -861,10 +861,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -872,10 +872,10 @@
"c": "id",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -883,10 +883,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -894,10 +894,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -905,10 +905,10 @@
"c": "Lucy",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -916,10 +916,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -927,10 +927,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -938,10 +938,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -949,10 +949,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -960,10 +960,10 @@
"c": "hr",
"t": "text.xml meta.tag.xml entity.name.tag.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -971,10 +971,10 @@
"c": ":",
"t": "text.xml meta.tag.xml entity.name.tag.xml punctuation.separator.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -982,10 +982,10 @@
"c": "name",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -993,10 +993,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1004,10 +1004,10 @@
"c": "Lucy",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1015,10 +1015,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1026,10 +1026,10 @@
"c": "hr",
"t": "text.xml meta.tag.xml entity.name.tag.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1037,10 +1037,10 @@
"c": ":",
"t": "text.xml meta.tag.xml entity.name.tag.xml punctuation.separator.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1048,10 +1048,10 @@
"c": "name",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1059,10 +1059,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1070,10 +1070,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1081,10 +1081,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1092,10 +1092,10 @@
"c": "hr",
"t": "text.xml meta.tag.xml entity.name.tag.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1103,10 +1103,10 @@
"c": ":",
"t": "text.xml meta.tag.xml entity.name.tag.xml punctuation.separator.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1114,10 +1114,10 @@
"c": "born",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1125,10 +1125,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1136,10 +1136,10 @@
"c": "1952-03-03",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1147,10 +1147,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1158,10 +1158,10 @@
"c": "hr",
"t": "text.xml meta.tag.xml entity.name.tag.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1169,10 +1169,10 @@
"c": ":",
"t": "text.xml meta.tag.xml entity.name.tag.xml punctuation.separator.namespace.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1180,10 +1180,10 @@
"c": "born",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1191,10 +1191,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1202,10 +1202,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1213,10 +1213,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1224,10 +1224,10 @@
"c": "qualification",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1235,10 +1235,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1246,10 +1246,10 @@
"c": "bossy, crabby and selfish",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1257,10 +1257,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1268,10 +1268,10 @@
"c": "qualification",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1279,10 +1279,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1290,10 +1290,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1301,10 +1301,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1312,10 +1312,10 @@
"c": "character",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1323,10 +1323,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1334,10 +1334,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1345,10 +1345,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1356,10 +1356,10 @@
"c": "VisualState.Setters",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1367,10 +1367,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1378,10 +1378,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1389,10 +1389,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1400,10 +1400,10 @@
"c": "Setter",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1411,10 +1411,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1422,10 +1422,10 @@
"c": "Target",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -1433,10 +1433,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1444,10 +1444,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1455,10 +1455,10 @@
"c": "inputPanel.Orientation",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1466,10 +1466,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1477,10 +1477,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1488,10 +1488,10 @@
"c": "Value",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -1499,10 +1499,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1510,10 +1510,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1521,10 +1521,10 @@
"c": "Vertical",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1532,10 +1532,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1543,10 +1543,10 @@
"c": "/>",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1554,10 +1554,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1565,10 +1565,10 @@
"c": "<",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1576,10 +1576,10 @@
"c": "Setter",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1587,10 +1587,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1598,10 +1598,10 @@
"c": "Target",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -1609,10 +1609,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1620,10 +1620,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1631,10 +1631,10 @@
"c": "inputButton.Margin",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1642,10 +1642,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1653,10 +1653,10 @@
"c": " ",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1664,10 +1664,10 @@
"c": "Value",
"t": "text.xml meta.tag.xml entity.other.attribute-name.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.other.attribute-name: #9CDCFE",
+ "light_plus": "entity.other.attribute-name: #FF0000",
+ "dark_vs": "entity.other.attribute-name: #9CDCFE",
+ "light_vs": "entity.other.attribute-name: #FF0000",
"hc_black": "entity.other.attribute-name: #9CDCFE"
}
},
@@ -1675,10 +1675,10 @@
"c": "=",
"t": "text.xml meta.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1686,10 +1686,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.begin.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1697,10 +1697,10 @@
"c": "0,4,0,0",
"t": "text.xml meta.tag.xml string.quoted.double.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1708,10 +1708,10 @@
"c": "\"",
"t": "text.xml meta.tag.xml string.quoted.double.xml punctuation.definition.string.end.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.double.xml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.double.xml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1719,10 +1719,10 @@
"c": "/>",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1730,10 +1730,10 @@
"c": " ",
"t": "text.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1741,10 +1741,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1752,10 +1752,10 @@
"c": "VisualState.Setters",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1763,10 +1763,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1774,10 +1774,10 @@
"c": "",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
},
@@ -1785,10 +1785,10 @@
"c": "project",
"t": "text.xml meta.tag.xml entity.name.tag.localname.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1796,10 +1796,10 @@
"c": ">",
"t": "text.xml meta.tag.xml punctuation.definition.tag.xml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "punctuation.definition.tag: #808080",
+ "light_plus": "punctuation.definition.tag: #800000",
+ "dark_vs": "punctuation.definition.tag: #808080",
+ "light_vs": "punctuation.definition.tag: #800000",
"hc_black": "punctuation.definition.tag: #808080"
}
}
diff --git a/extensions/yaml/test/colorize-results/issue-1550_yaml.json b/extensions/yaml/test/colorize-results/issue-1550_yaml.json
index 3254772038..79d6d39cc9 100644
--- a/extensions/yaml/test/colorize-results/issue-1550_yaml.json
+++ b/extensions/yaml/test/colorize-results/issue-1550_yaml.json
@@ -3,10 +3,10 @@
"c": "test1",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -14,10 +14,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -36,10 +36,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": "dsd",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -58,10 +58,10 @@
"c": "test2",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -69,10 +69,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -91,10 +91,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": "abc-def",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -113,10 +113,10 @@
"c": "test-3",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -124,10 +124,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -135,10 +135,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -146,10 +146,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "abcdef",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -168,10 +168,10 @@
"c": "test-4",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -179,10 +179,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -190,10 +190,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -201,10 +201,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": "abc-def",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
}
diff --git a/extensions/yaml/test/colorize-results/issue-4008_yaml.json b/extensions/yaml/test/colorize-results/issue-4008_yaml.json
index 6e13bae7c3..10329df780 100644
--- a/extensions/yaml/test/colorize-results/issue-4008_yaml.json
+++ b/extensions/yaml/test/colorize-results/issue-4008_yaml.json
@@ -3,10 +3,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -14,10 +14,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": "blue",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -36,10 +36,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -58,10 +58,10 @@
"c": "a=\"brown,not_brown\"",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -69,10 +69,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -91,10 +91,10 @@
"c": "not_blue",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -102,10 +102,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -113,10 +113,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -124,10 +124,10 @@
"c": "foo",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -135,10 +135,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -146,10 +146,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "blue",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -168,10 +168,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -179,10 +179,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -190,10 +190,10 @@
"c": "foo=\"}\"",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -201,10 +201,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -223,10 +223,10 @@
"c": "not_blue",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -234,10 +234,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -245,10 +245,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -256,10 +256,10 @@
"c": "1",
"t": "source.yaml constant.numeric.integer.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
}
diff --git a/extensions/yaml/test/colorize-results/issue-6303_yaml.json b/extensions/yaml/test/colorize-results/issue-6303_yaml.json
index c9857edb64..edd710c06e 100644
--- a/extensions/yaml/test/colorize-results/issue-6303_yaml.json
+++ b/extensions/yaml/test/colorize-results/issue-6303_yaml.json
@@ -3,10 +3,10 @@
"c": "swagger",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -14,10 +14,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -25,10 +25,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -36,10 +36,10 @@
"c": "'",
"t": "source.yaml string.quoted.single.yaml punctuation.definition.string.begin.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -47,10 +47,10 @@
"c": "2.0",
"t": "source.yaml string.quoted.single.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -58,10 +58,10 @@
"c": "'",
"t": "source.yaml string.quoted.single.yaml punctuation.definition.string.end.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -69,10 +69,10 @@
"c": "info",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -80,10 +80,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -91,10 +91,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -102,10 +102,10 @@
"c": "description",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -113,10 +113,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -124,10 +124,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -135,10 +135,10 @@
"c": "'",
"t": "source.yaml string.quoted.single.yaml punctuation.definition.string.begin.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -146,10 +146,10 @@
"c": "The API Management Service API defines an updated and refined version",
"t": "source.yaml string.quoted.single.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -157,10 +157,10 @@
"c": " of the concepts currently known as Developer, APP, and API Product in Edge. Of",
"t": "source.yaml string.quoted.single.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -168,10 +168,10 @@
"c": " note is the introduction of the API concept, missing previously from Edge",
"t": "source.yaml string.quoted.single.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -179,10 +179,10 @@
"c": " ",
"t": "source.yaml string.quoted.single.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -190,10 +190,10 @@
"c": "'",
"t": "source.yaml string.quoted.single.yaml punctuation.definition.string.end.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.quoted.single.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.quoted.single.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -201,10 +201,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": "title",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -223,10 +223,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -234,10 +234,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -245,10 +245,10 @@
"c": "API Management Service API",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -256,10 +256,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": "version",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -278,10 +278,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -289,10 +289,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -300,10 +300,10 @@
"c": "initial",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
}
diff --git a/extensions/yaml/test/colorize-results/test_yaml.json b/extensions/yaml/test/colorize-results/test_yaml.json
index 1527b5b840..6c871b3220 100644
--- a/extensions/yaml/test/colorize-results/test_yaml.json
+++ b/extensions/yaml/test/colorize-results/test_yaml.json
@@ -3,10 +3,10 @@
"c": "#",
"t": "source.yaml comment.line.number-sign.yaml punctuation.definition.comment.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -14,10 +14,10 @@
"c": " sequencer protocols for Laser eye surgery",
"t": "source.yaml comment.line.number-sign.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -25,10 +25,10 @@
"c": "---",
"t": "source.yaml entity.other.document.begin.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -36,10 +36,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -47,10 +47,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -58,10 +58,10 @@
"c": "step",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -69,10 +69,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -80,10 +80,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -91,10 +91,10 @@
"c": "&",
"t": "source.yaml meta.property.yaml keyword.control.property.anchor.yaml punctuation.definition.anchor.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -102,10 +102,10 @@
"c": "id001",
"t": "source.yaml meta.property.yaml entity.name.type.anchor.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.type: #4EC9B0",
+ "light_plus": "entity.name.type: #267F99",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "entity.name.type: #4EC9B0"
}
},
@@ -113,10 +113,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -124,10 +124,10 @@
"c": "#",
"t": "source.yaml comment.line.number-sign.yaml punctuation.definition.comment.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -135,10 +135,10 @@
"c": " defines anchor label &id001",
"t": "source.yaml comment.line.number-sign.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -146,10 +146,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -157,10 +157,10 @@
"c": "instrument",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -168,10 +168,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -179,10 +179,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -190,10 +190,10 @@
"c": "Lasik 2000",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -201,10 +201,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -212,10 +212,10 @@
"c": "pulseEnergy",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -223,10 +223,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -234,10 +234,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -245,10 +245,10 @@
"c": "5.4",
"t": "source.yaml constant.numeric.float.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -256,10 +256,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -267,10 +267,10 @@
"c": "spotSize",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -278,10 +278,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -289,10 +289,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -300,10 +300,10 @@
"c": "1mm",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -311,10 +311,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -322,10 +322,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -333,10 +333,10 @@
"c": "step",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -344,10 +344,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -355,10 +355,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -366,10 +366,10 @@
"c": "*",
"t": "source.yaml keyword.control.flow.alias.yaml punctuation.definition.alias.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -377,10 +377,10 @@
"c": "id001",
"t": "source.yaml variable.other.alias.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -388,10 +388,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -399,10 +399,10 @@
"c": "#",
"t": "source.yaml comment.line.number-sign.yaml punctuation.definition.comment.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -410,10 +410,10 @@
"c": " refers to the first step (with anchor &id001)",
"t": "source.yaml comment.line.number-sign.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "comment: #6A9955",
+ "light_plus": "comment: #008000",
+ "dark_vs": "comment: #6A9955",
+ "light_vs": "comment: #008000",
"hc_black": "comment: #7CA668"
}
},
@@ -421,10 +421,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -432,10 +432,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -443,10 +443,10 @@
"c": "step",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -454,10 +454,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -465,10 +465,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -476,10 +476,10 @@
"c": "*",
"t": "source.yaml keyword.control.flow.alias.yaml punctuation.definition.alias.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -487,10 +487,10 @@
"c": "id001",
"t": "source.yaml variable.other.alias.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -498,10 +498,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -509,10 +509,10 @@
"c": "spotSize",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -520,10 +520,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -531,10 +531,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -542,10 +542,10 @@
"c": "2mm",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -553,10 +553,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -564,10 +564,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -575,10 +575,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -586,10 +586,10 @@
"c": "step",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -597,10 +597,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -608,10 +608,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -619,10 +619,10 @@
"c": "*",
"t": "source.yaml keyword.control.flow.alias.yaml punctuation.definition.alias.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "keyword.control: #C586C0",
+ "light_plus": "keyword.control: #AF00DB",
+ "dark_vs": "keyword.control: #569CD6",
+ "light_vs": "keyword.control: #0000FF",
"hc_black": "keyword.control: #C586C0"
}
},
@@ -630,10 +630,10 @@
"c": "id002",
"t": "source.yaml variable.other.alias.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "variable: #9CDCFE",
+ "light_plus": "variable: #001080",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "variable: #9CDCFE"
}
},
@@ -641,10 +641,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -652,10 +652,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -663,10 +663,10 @@
"c": "{",
"t": "source.yaml meta.flow-mapping.yaml punctuation.definition.mapping.begin.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -674,10 +674,10 @@
"c": "name",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.key.yaml string.unquoted.plain.in.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -685,10 +685,10 @@
"c": ":",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -696,10 +696,10 @@
"c": " ",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.yaml meta.flow-pair.value.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -707,10 +707,10 @@
"c": "John Smith",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.yaml meta.flow-pair.value.yaml string.unquoted.plain.in.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.in.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.in.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -718,10 +718,10 @@
"c": ",",
"t": "source.yaml meta.flow-mapping.yaml punctuation.separator.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -729,10 +729,10 @@
"c": " ",
"t": "source.yaml meta.flow-mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -740,10 +740,10 @@
"c": "age",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.key.yaml string.unquoted.plain.in.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -751,10 +751,10 @@
"c": ":",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -762,10 +762,10 @@
"c": " ",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.yaml meta.flow-pair.value.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -773,10 +773,10 @@
"c": "33",
"t": "source.yaml meta.flow-mapping.yaml meta.flow-pair.yaml meta.flow-pair.value.yaml constant.numeric.integer.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -784,10 +784,10 @@
"c": "}",
"t": "source.yaml meta.flow-mapping.yaml punctuation.definition.mapping.end.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -795,10 +795,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -806,10 +806,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -817,10 +817,10 @@
"c": "name",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -828,10 +828,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -839,10 +839,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -850,10 +850,10 @@
"c": "Mary Smith",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -861,10 +861,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -872,10 +872,10 @@
"c": "age",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -883,10 +883,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -894,10 +894,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -905,10 +905,10 @@
"c": "27",
"t": "source.yaml constant.numeric.integer.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "constant.numeric: #B5CEA8",
+ "light_plus": "constant.numeric: #09885A",
+ "dark_vs": "constant.numeric: #B5CEA8",
+ "light_vs": "constant.numeric: #09885A",
"hc_black": "constant.numeric: #B5CEA8"
}
},
@@ -916,10 +916,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -927,10 +927,10 @@
"c": "men",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -938,10 +938,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -949,10 +949,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -960,10 +960,10 @@
"c": "[",
"t": "source.yaml meta.flow-sequence.yaml punctuation.definition.sequence.begin.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -971,10 +971,10 @@
"c": "John Smith",
"t": "source.yaml meta.flow-sequence.yaml string.unquoted.plain.in.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.in.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.in.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -982,10 +982,10 @@
"c": ",",
"t": "source.yaml meta.flow-sequence.yaml punctuation.separator.sequence.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -993,10 +993,10 @@
"c": " ",
"t": "source.yaml meta.flow-sequence.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1004,10 +1004,10 @@
"c": "Bill Jones",
"t": "source.yaml meta.flow-sequence.yaml string.unquoted.plain.in.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.in.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.in.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1015,10 +1015,10 @@
"c": "]",
"t": "source.yaml meta.flow-sequence.yaml punctuation.definition.sequence.end.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1026,10 +1026,10 @@
"c": "women",
"t": "source.yaml string.unquoted.plain.out.yaml entity.name.tag.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "entity.name.tag: #569CD6",
+ "light_plus": "entity.name.tag: #800000",
+ "dark_vs": "entity.name.tag: #569CD6",
+ "light_vs": "entity.name.tag: #800000",
"hc_black": "entity.name.tag: #569CD6"
}
},
@@ -1037,10 +1037,10 @@
"c": ":",
"t": "source.yaml punctuation.separator.key-value.mapping.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1048,10 +1048,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1059,10 +1059,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1070,10 +1070,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1081,10 +1081,10 @@
"c": "Mary Smith",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
},
@@ -1092,10 +1092,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1103,10 +1103,10 @@
"c": "-",
"t": "source.yaml punctuation.definition.block.sequence.item.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1114,10 +1114,10 @@
"c": " ",
"t": "source.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "default: #D4D4D4",
+ "light_plus": "default: #000000",
+ "dark_vs": "default: #D4D4D4",
+ "light_vs": "default: #000000",
"hc_black": "default: #FFFFFF"
}
},
@@ -1125,10 +1125,10 @@
"c": "Susan Williams",
"t": "source.yaml string.unquoted.plain.out.yaml",
"r": {
- "dark_plus": null,
- "light_plus": null,
- "dark_vs": null,
- "light_vs": null,
+ "dark_plus": "string: #CE9178",
+ "light_plus": "string.unquoted.plain.out.yaml: #0000FF",
+ "dark_vs": "string: #CE9178",
+ "light_vs": "string.unquoted.plain.out.yaml: #0000FF",
"hc_black": "string: #CE9178"
}
}
diff --git a/package.json b/package.json
index 3849272d10..97c62b8f09 100644
--- a/package.json
+++ b/package.json
@@ -101,7 +101,7 @@
"asar": "^0.14.0",
"chromium-pickle-js": "^0.2.0",
"copy-webpack-plugin": "^4.5.2",
- "coveralls": "^3.0.3",
+ "coveralls": "^2.11.11",
"cson-parser": "^1.3.3",
"debounce": "^1.0.0",
"documentdb": "^1.5.1",
diff --git a/resources/linux/debian/postinst.template b/resources/linux/debian/postinst.template
index 661c7785d8..196f4c6b0b 100644
--- a/resources/linux/debian/postinst.template
+++ b/resources/linux/debian/postinst.template
@@ -15,6 +15,7 @@ update-alternatives --install /usr/bin/editor editor /usr/bin/@@NAME@@ 0
# Install the desktop entry
if hash desktop-file-install 2>/dev/null; then
desktop-file-install /usr/share/applications/@@NAME@@.desktop
+ desktop-file-install /usr/share/applications/@@NAME@@-url-handler.desktop
fi
if [ "@@NAME@@" != "code-oss" ]; then
diff --git a/scripts/build.bat b/scripts/build.bat
deleted file mode 100644
index c002b950b5..0000000000
--- a/scripts/build.bat
+++ /dev/null
@@ -1,9 +0,0 @@
-@echo off
-
-CALL gulp --max_old_space_size=2000 electron-ia32
-CALL "%~dp0\test.bat"
-CALL gulp --max_old_space_size=2000 optimize-vscode
-
-:error
-echo Exit code %errorlevel%
-exit /b %errorlevel%
\ No newline at end of file
diff --git a/scripts/build.sh b/scripts/build.sh
deleted file mode 100755
index 3e12ccc74a..0000000000
--- a/scripts/build.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-set -e
-gulp --max_old_space_size=8196 electron || { echo 'gulp electron failed' ; exit 1; }
-./scripts/test.sh || { echo 'Tests failed' ; exit 1; }
-gulp --max_old_space_size=8196 optimize-vscode || { echo 'gulp optimize vscode failed' ; exit 1; }
\ No newline at end of file
diff --git a/src/vs/workbench/contrib/extensions/node/extensionsWorkbenchService.ts b/src/vs/workbench/contrib/extensions/node/extensionsWorkbenchService.ts
index d268473237..c68696d3e9 100644
--- a/src/vs/workbench/contrib/extensions/node/extensionsWorkbenchService.ts
+++ b/src/vs/workbench/contrib/extensions/node/extensionsWorkbenchService.ts
@@ -259,7 +259,7 @@ class Extension implements IExtension {
if (this.type === ExtensionType.System) {
// {{SQL CARBON EDIT}}
return Promise.resolve(`# ${this.displayName || this.name}
-**Notice** This is a an extension that is bundled with Azure Data Studio.
+**Notice:** This extension is bundled with Azure Data Studio. It can be disabled but not uninstalled.
## Features
${this.description}
`);
diff --git a/test/electron/renderer.js b/test/electron/renderer.js
index 1fb5806a53..b65b979af2 100644
--- a/test/electron/renderer.js
+++ b/test/electron/renderer.js
@@ -42,7 +42,6 @@ function initLoader(opts) {
baseUrl: bootstrap.uriFromPath(path.join(__dirname, '../../src')),
// {{SQL CARBON EDIT}}
paths: {
- 'vs/css': '../test/css.mock',
'vs': `../${outdir}/vs`,
'sqltest': `../${outdir}/sqltest`,
'sql': `../${outdir}/sql`,
diff --git a/yarn.lock b/yarn.lock
index 07146be832..2a40d581fa 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -850,6 +850,11 @@ assert-plus@1.0.0, assert-plus@^1.0.0:
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
+assert-plus@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
+ integrity sha1-104bh+ev/A24qttwIfP+SBAasjQ=
+
assert@^1.1.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
@@ -928,21 +933,26 @@ autoprefixer@^6.3.1:
postcss "^5.2.16"
postcss-value-parser "^3.2.3"
+aws-sign2@~0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
+ integrity sha1-FDQt0428yU0OW4fXY81jYSwOeU8=
+
aws-sign2@~0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
+aws4@^1.2.1, aws4@^1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
+ integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==
+
aws4@^1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
integrity sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=
-aws4@^1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
- integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==
-
azure-storage@^2.10.2:
version "2.10.2"
resolved "https://registry.yarnpkg.com/azure-storage/-/azure-storage-2.10.2.tgz#3bcabdbf10e72fd0990db81116e49023c4a675b6"
@@ -1110,6 +1120,13 @@ boolbase@~1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
+boom@2.x.x:
+ version "2.10.1"
+ resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
+ integrity sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=
+ dependencies:
+ hoek "2.x.x"
+
boom@4.x.x:
version "4.3.1"
resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
@@ -1400,6 +1417,11 @@ caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000760.tgz#3ea29473eb78a6ccb09f2eb73ac9e1debfec528d"
integrity sha1-PqKUc+t4psywny63Osnh3r/sUo0=
+caseless@~0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
+ integrity sha1-cVuW6phBWTzDMGeSP17GDr2k99c=
+
caseless@~0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
@@ -1421,7 +1443,7 @@ chalk@2.3.1:
escape-string-regexp "^1.0.5"
supports-color "^5.2.0"
-chalk@^1.1.3:
+chalk@^1.1.1, chalk@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
@@ -1995,17 +2017,16 @@ corser@~2.0.0:
resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87"
integrity sha1-jtolLsqrWEDc2XXOuQ2TcMgZ/4c=
-coveralls@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.3.tgz#83b1c64aea1c6afa69beaf50b55ac1bc4d13e2b8"
- integrity sha512-viNfeGlda2zJr8Gj1zqXpDMRjw9uM54p7wzZdvLRyOgnAfCe974Dq4veZkjJdxQXbmdppu6flEajFYseHYaUhg==
+coveralls@^2.11.11:
+ version "2.13.3"
+ resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-2.13.3.tgz#9ad7c2ae527417f361e8b626483f48ee92dd2bc7"
+ integrity sha512-iiAmn+l1XqRwNLXhW8Rs5qHZRFMYp9ZIPjEOVRpC/c4so6Y/f4/lFi0FfR5B9cCqgyhkJ5cZmbvcVRfP8MHchw==
dependencies:
- growl "~> 1.10.0"
- js-yaml "^3.11.0"
- lcov-parse "^0.0.10"
- log-driver "^1.2.7"
- minimist "^1.2.0"
- request "^2.86.0"
+ js-yaml "3.6.1"
+ lcov-parse "0.0.10"
+ log-driver "1.2.5"
+ minimist "1.2.0"
+ request "2.79.0"
create-ecdh@^4.0.0:
version "4.0.3"
@@ -2063,6 +2084,13 @@ crypt@~0.0.1:
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
+cryptiles@2.x.x:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
+ integrity sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=
+ dependencies:
+ boom "2.x.x"
+
cryptiles@3.x.x:
version "3.1.2"
resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
@@ -3091,7 +3119,7 @@ extend@^3.0.0, extend@~3.0.1:
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
integrity sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=
-extend@^3.0.2, extend@~3.0.2:
+extend@^3.0.2, extend@~3.0.0, extend@~3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
@@ -3402,6 +3430,15 @@ forever-agent@~0.6.1:
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
+form-data@~2.1.1:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
+ integrity sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.5"
+ mime-types "^2.1.12"
+
form-data@~2.3.1:
version "2.3.1"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"
@@ -3570,6 +3607,20 @@ gauge@~2.7.3:
strip-ansi "^3.0.1"
wide-align "^1.1.0"
+generate-function@^2.0.0:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f"
+ integrity sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==
+ dependencies:
+ is-property "^1.0.2"
+
+generate-object-property@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
+ integrity sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=
+ dependencies:
+ is-property "^1.0.0"
+
get-caller-file@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
@@ -3819,11 +3870,6 @@ growl@1.9.2:
resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f"
integrity sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8=
-"growl@~> 1.10.0":
- version "1.10.5"
- resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
- integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
-
gulp-atom-electron@^1.20.0:
version "1.20.0"
resolved "https://registry.yarnpkg.com/gulp-atom-electron/-/gulp-atom-electron-1.20.0.tgz#10b01f6a4c0257a8468c4da4ec9c67ecb28a32ed"
@@ -4119,6 +4165,16 @@ har-schema@^2.0.0:
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
+har-validator@~2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
+ integrity sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=
+ dependencies:
+ chalk "^1.1.1"
+ commander "^2.9.0"
+ is-my-json-valid "^2.12.4"
+ pinkie-promise "^2.0.0"
+
har-validator@~5.0.3:
version "5.0.3"
resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
@@ -4228,6 +4284,16 @@ hash.js@^1.0.0, hash.js@^1.0.3:
inherits "^2.0.3"
minimalistic-assert "^1.0.1"
+hawk@~3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
+ integrity sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=
+ dependencies:
+ boom "2.x.x"
+ cryptiles "2.x.x"
+ hoek "2.x.x"
+ sntp "1.x.x"
+
hawk@~6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
@@ -4252,6 +4318,11 @@ hmac-drbg@^1.0.0:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.1"
+hoek@2.x.x:
+ version "2.16.3"
+ resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
+ integrity sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=
+
hoek@4.x.x:
version "4.2.0"
resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d"
@@ -4343,6 +4414,15 @@ http-server@^0.11.1:
portfinder "^1.0.13"
union "~0.4.3"
+http-signature@~1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
+ integrity sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=
+ dependencies:
+ assert-plus "^0.2.0"
+ jsprim "^1.2.2"
+ sshpk "^1.7.0"
+
http-signature@~1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
@@ -4759,6 +4839,22 @@ is-glob@^4.0.0:
dependencies:
is-extglob "^2.1.1"
+is-my-ip-valid@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824"
+ integrity sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==
+
+is-my-json-valid@^2.12.4:
+ version "2.20.0"
+ resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz#1345a6fca3e8daefc10d0fa77067f54cedafd59a"
+ integrity sha512-XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA==
+ dependencies:
+ generate-function "^2.0.0"
+ generate-object-property "^1.1.0"
+ is-my-ip-valid "^1.0.0"
+ jsonpointer "^4.0.0"
+ xtend "^4.0.0"
+
is-negated-glob@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2"
@@ -4829,6 +4925,11 @@ is-promise@^2.1.0:
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
+is-property@^1.0.0, is-property@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
+ integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=
+
is-relative@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-0.2.1.tgz#d27f4c7d516d175fb610db84bbeef23c3bc97aa5"
@@ -5048,13 +5149,13 @@ js-tokens@^4.0.0:
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-js-yaml@^3.11.0, js-yaml@^3.13.0, js-yaml@^3.9.1:
- version "3.13.1"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
- integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
+js-yaml@3.6.1:
+ version "3.6.1"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30"
+ integrity sha1-bl/mfYsgXOTSL60Ft3geja3MSzA=
dependencies:
argparse "^1.0.7"
- esprima "^4.0.0"
+ esprima "^2.6.0"
js-yaml@^3.12.0:
version "3.12.1"
@@ -5064,6 +5165,14 @@ js-yaml@^3.12.0:
argparse "^1.0.7"
esprima "^4.0.0"
+js-yaml@^3.13.0, js-yaml@^3.9.1:
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
+ integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
+ dependencies:
+ argparse "^1.0.7"
+ esprima "^4.0.0"
+
js-yaml@~3.7.0:
version "3.7.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
@@ -5175,6 +5284,11 @@ jsonparse@~1.2.0:
resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.2.0.tgz#5c0c5685107160e72fe7489bddea0b44c2bc67bd"
integrity sha1-XAxWhRBxYOcv50ib3eoLRMK8Z70=
+jsonpointer@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
+ integrity sha1-T9kss04OnbPInIYi7PUfm5eMbLk=
+
jsprim@^1.2.2:
version "1.4.1"
resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
@@ -5275,7 +5389,7 @@ lcid@^2.0.0:
dependencies:
invert-kv "^2.0.0"
-lcov-parse@^0.0.10:
+lcov-parse@0.0.10:
version "0.0.10"
resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3"
integrity sha1-GwuP+ayceIklBYK3C3ExXZ2m2aM=
@@ -5457,10 +5571,10 @@ lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5:
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
-log-driver@^1.2.7:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
- integrity sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==
+log-driver@1.2.5:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.5.tgz#7ae4ec257302fd790d557cb10c97100d857b0056"
+ integrity sha1-euTsJXMC/XkNVXyxDJcQDYV7AFY=
lolex@1.3.2:
version "1.3.2"
@@ -5755,6 +5869,11 @@ miller-rabin@^4.0.0:
bn.js "^4.0.0"
brorand "^1.0.1"
+mime-db@1.40.0:
+ version "1.40.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32"
+ integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==
+
mime-db@~1.30.0:
version "1.30.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
@@ -5779,6 +5898,13 @@ mime-types@~2.1.19:
dependencies:
mime-db "~1.36.0"
+mime-types@~2.1.7:
+ version "2.1.24"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81"
+ integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==
+ dependencies:
+ mime-db "1.40.0"
+
mime@1.4.1, mime@^1.3.4:
version "1.4.1"
resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
@@ -6320,7 +6446,7 @@ number-is-nan@^1.0.0:
resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c"
integrity sha512-IKdSTiDWCarf2JTS5e9e2+5tPZGdkRJ79XjYV0pzK8Q9BpsFyBq1RGKxzs7Q8UBushGw7m6TzVKz6fcY99iSWw==
-oauth-sign@~0.8.2:
+oauth-sign@~0.8.1, oauth-sign@~0.8.2:
version "0.8.2"
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
integrity sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=
@@ -7385,6 +7511,11 @@ qs@~2.3.3:
resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404"
integrity sha1-6eha2+ddoLvkyOBHaghikPhjtAQ=
+qs@~6.3.0:
+ version "6.3.2"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c"
+ integrity sha1-51vV9uJoEioqDgvaYwslUMFmUCw=
+
qs@~6.5.2:
version "6.5.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
@@ -7750,6 +7881,32 @@ replacestream@^4.0.0:
object-assign "^4.0.1"
readable-stream "^2.0.2"
+request@2.79.0:
+ version "2.79.0"
+ resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
+ integrity sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=
+ dependencies:
+ aws-sign2 "~0.6.0"
+ aws4 "^1.2.1"
+ caseless "~0.11.0"
+ combined-stream "~1.0.5"
+ extend "~3.0.0"
+ forever-agent "~0.6.1"
+ form-data "~2.1.1"
+ har-validator "~2.0.6"
+ hawk "~3.1.3"
+ http-signature "~1.1.0"
+ is-typedarray "~1.0.0"
+ isstream "~0.1.2"
+ json-stringify-safe "~5.0.1"
+ mime-types "~2.1.7"
+ oauth-sign "~0.8.1"
+ qs "~6.3.0"
+ stringstream "~0.0.4"
+ tough-cookie "~2.3.0"
+ tunnel-agent "~0.4.1"
+ uuid "^3.0.0"
+
"request@>= 2.44.0 < 3.0.0", request@^2.45.0, request@^2.79.0:
version "2.83.0"
resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
@@ -8332,6 +8489,13 @@ snapdragon@^0.8.1:
source-map-resolve "^0.5.0"
use "^3.1.0"
+sntp@1.x.x:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
+ integrity sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=
+ dependencies:
+ hoek "2.x.x"
+
sntp@2.x.x:
version "2.1.0"
resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
@@ -8621,6 +8785,11 @@ string_decoder@~1.0.3:
dependencies:
safe-buffer "~5.1.0"
+stringstream@~0.0.4:
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72"
+ integrity sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA==
+
stringstream@~0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
@@ -9041,6 +9210,13 @@ touch@0.0.3:
dependencies:
nopt "~1.0.10"
+tough-cookie@~2.3.0:
+ version "2.3.4"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
+ integrity sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==
+ dependencies:
+ punycode "^1.4.1"
+
tough-cookie@~2.3.3:
version "2.3.3"
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
@@ -9144,6 +9320,11 @@ tunnel-agent@^0.6.0:
dependencies:
safe-buffer "^5.0.1"
+tunnel-agent@~0.4.1:
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
+ integrity sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=
+
tunnel@0.0.4:
version "0.0.4"
resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.4.tgz#2d3785a158c174c9a16dc2c046ec5fc5f1742213"