Created VSCode Extension, some updates from LinkedLives in the field
This commit is contained in:
168
VSCode/package.json
Normal file
168
VSCode/package.json
Normal file
@@ -0,0 +1,168 @@
|
||||
{
|
||||
"name": "quill",
|
||||
"displayName": "Quill",
|
||||
"description": "HTML/CSS Syntax highlighting, best used with the Quill framework",
|
||||
"version": "1.0.0",
|
||||
"publisher": "capturedsun",
|
||||
"icon": "docs/Quill.png",
|
||||
"engines": {
|
||||
"vscode": "^1.19.0"
|
||||
},
|
||||
"galleryBanner": {
|
||||
"color": "#dedede",
|
||||
"theme": "light"
|
||||
},
|
||||
"repository": {
|
||||
"url": "https://github.com/capturedsun/Quill"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/capturedsun/Quill/issues"
|
||||
},
|
||||
"main": "./scripts/main",
|
||||
"categories": [
|
||||
"Programming Languages"
|
||||
],
|
||||
"keywords": [
|
||||
"javascript",
|
||||
"es6",
|
||||
"es6-string-html",
|
||||
"html",
|
||||
"sql",
|
||||
"xml",
|
||||
"svg"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onCommand:quill.insertComment",
|
||||
"onCommand:quill.insertTemplate"
|
||||
],
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "quill.insertComment",
|
||||
"title": "Insert es6-string-html comment",
|
||||
"category": "HTML"
|
||||
},
|
||||
{
|
||||
"command": "quill.insertTemplate",
|
||||
"title": "Insert es6-string-html template",
|
||||
"category": "HTML"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"injectTo": [
|
||||
"source.html",
|
||||
"source.js",
|
||||
"source.js.jsx",
|
||||
"source.jsx",
|
||||
"source.ts",
|
||||
"source.tsx",
|
||||
"source.vue",
|
||||
"source.svelte",
|
||||
"source.sql",
|
||||
"source.css",
|
||||
"text.html"
|
||||
],
|
||||
"scopeName": "inline.es6-css",
|
||||
"path": "./syntaxes/es6-inline-css.json",
|
||||
"embeddedLanguages": {
|
||||
"meta.embedded.block.html": "html"
|
||||
}
|
||||
},
|
||||
{
|
||||
"injectTo": [
|
||||
"source.html",
|
||||
"source.js",
|
||||
"source.js.jsx",
|
||||
"source.jsx",
|
||||
"source.ts",
|
||||
"source.tsx",
|
||||
"source.vue",
|
||||
"source.svelte",
|
||||
"source.sql",
|
||||
"text.html"
|
||||
],
|
||||
"scopeName": "inline.es6-glsl",
|
||||
"path": "./syntaxes/es6-inline-glsl.json",
|
||||
"embeddedLanguages": {
|
||||
"meta.embedded.glsl": "glsl"
|
||||
}
|
||||
},
|
||||
{
|
||||
"injectTo": [
|
||||
"source.html",
|
||||
"source.js",
|
||||
"source.js.jsx",
|
||||
"source.jsx",
|
||||
"source.ts",
|
||||
"source.tsx",
|
||||
"source.vue",
|
||||
"source.svelte",
|
||||
"source.sql",
|
||||
"text.html"
|
||||
],
|
||||
"scopeName": "inline.es6-xml",
|
||||
"path": "./syntaxes/es6-inline-xml.json",
|
||||
"embeddedLanguages": {
|
||||
"meta.embedded.xml": "xml"
|
||||
}
|
||||
},
|
||||
{
|
||||
"injectTo": [
|
||||
"source.html",
|
||||
"source.js",
|
||||
"source.js.jsx",
|
||||
"source.jsx",
|
||||
"source.ts",
|
||||
"source.tsx",
|
||||
"source.vue",
|
||||
"source.svelte",
|
||||
"source.sql",
|
||||
"text.html"
|
||||
],
|
||||
"scopeName": "inline.es6-js-injection",
|
||||
"path": "./syntaxes/es6-js-injection.json"
|
||||
},
|
||||
{
|
||||
"injectTo": [
|
||||
"source.html",
|
||||
"source.js",
|
||||
"source.js.jsx",
|
||||
"source.jsx",
|
||||
"source.ts",
|
||||
"source.tsx",
|
||||
"source.vue",
|
||||
"source.svelte",
|
||||
"source.sql",
|
||||
"text.html"
|
||||
],
|
||||
"scopeName": "inline.es6-html",
|
||||
"path": "./syntaxes/es6-inline-html.json"
|
||||
},
|
||||
{
|
||||
"injectTo": [
|
||||
"source.html",
|
||||
"source.js",
|
||||
"source.js.jsx",
|
||||
"source.jsx",
|
||||
"source.ts",
|
||||
"source.tsx",
|
||||
"source.vue",
|
||||
"source.svelte",
|
||||
"source.sql",
|
||||
"text.html"
|
||||
],
|
||||
"scopeName": "inline.es6-sql",
|
||||
"path": "./syntaxes/es6-inline-sql.json",
|
||||
"embeddedLanguages": {
|
||||
"meta.embedded.block.sql": "sql"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"__metadata": {
|
||||
"id": "quill.capturedsun",
|
||||
"publisherId": "capturedsun",
|
||||
"publisherDisplayName": "Captured Sun"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user