diff --git a/VSCode/package.json b/VSCode/package.json index 869796b..7ac1cc4 100644 --- a/VSCode/package.json +++ b/VSCode/package.json @@ -2,7 +2,7 @@ "name": "quill", "displayName": "Quill", "description": "HTML/CSS Syntax highlighting, best used with the Quill framework", - "version": "1.0.1", + "version": "1.0.2", "publisher": "capturedsun", "icon": "docs/Quill.png", "engines": { @@ -51,7 +51,11 @@ "snippets": [ { "language": "javascript", - "path": "./snippets.json" + "path": "./snippets-js.json" + }, + { + "language": "html", + "path": "./snippets-html.json" } ], "grammars": [ diff --git a/VSCode/quill-1.0.2.vsix b/VSCode/quill-1.0.2.vsix new file mode 100644 index 0000000..9a54d91 Binary files /dev/null and b/VSCode/quill-1.0.2.vsix differ diff --git a/VSCode/snippets-html.json b/VSCode/snippets-html.json new file mode 100644 index 0000000..e744296 --- /dev/null +++ b/VSCode/snippets-html.json @@ -0,0 +1,24 @@ +{ + "*page": { + "prefix": "*page", + "body": [ + "", + "", + " ", + " Index", + " ", + " ", + " ", + " ", + "", + "", + " ", + "" + ], + "description": "Use the DOM collection of functions" + } +} \ No newline at end of file diff --git a/VSCode/snippets.json b/VSCode/snippets-js.json similarity index 100% rename from VSCode/snippets.json rename to VSCode/snippets-js.json