run prettier over extensions json files

This commit is contained in:
João Moreno
2021-01-29 15:19:18 +01:00
parent 52f437953d
commit 9a5d14e307
105 changed files with 3577 additions and 3078 deletions
+53 -27
View File
@@ -1,29 +1,55 @@
{ {
"name": "bat", "name": "bat",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "^1.52.0"
"update-grammar": "node ../../build/npm/update-grammar.js mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "vscode-grammar-updater mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
"languages": [{ },
"id": "bat", "contributes": {
"extensions": [ ".bat", ".cmd"], "languages": [
"aliases": [ "Batch", "bat" ], {
"configuration": "./language-configuration.json" "id": "bat",
}], "extensions": [
"grammars": [{ ".bat",
"language": "bat", ".cmd"
"scopeName": "source.batchfile", ],
"path": "./syntaxes/batchfile.tmLanguage.json" "aliases": [
}], "Batch",
"snippets": [{ "bat"
"language": "bat", ],
"path": "./snippets/batchfile.code-snippets" "configuration": "./language-configuration.json"
}] }
} ],
"grammars": [
{
"language": "bat",
"scopeName": "source.batchfile",
"path": "./syntaxes/batchfile.tmLanguage.json"
}
],
"snippets": [
{
"language": "bat",
"path": "./snippets/batchfile.code-snippets"
}
]
},
"homepage": "https://code.visualstudio.com/",
"bugs": {
"url": "https://github.com/microsoft/vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-bat.git"
},
"dependencies": {},
"devDependencies": {
"vscode-grammar-updater": "^1.0.2"
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Windows Bat Language Basics", "displayName": "Windows Bat Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in Windows batch files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in Windows batch files."
} }
+40 -24
View File
@@ -1,25 +1,41 @@
{ {
"name": "clojure", "name": "clojure",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"
"languages": [{ },
"id": "clojure", "contributes": {
"aliases": ["Clojure", "clojure"], "languages": [
"extensions": [".clj", ".cljs", ".cljc", ".cljx", ".clojure", ".edn"], {
"configuration": "./language-configuration.json" "id": "clojure",
}], "aliases": [
"grammars": [{ "Clojure",
"language": "clojure", "clojure"
"scopeName": "source.clojure", ],
"path": "./syntaxes/clojure.tmLanguage.json" "extensions": [
}] ".clj",
} ".cljs",
} ".cljc",
".cljx",
".clojure",
".edn"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "clojure",
"scopeName": "source.clojure",
"path": "./syntaxes/clojure.tmLanguage.json"
}
]
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Clojure Language Basics", "displayName": "Clojure Language Basics",
"description": "Provides syntax highlighting and bracket matching in Clojure files." "description": "Provides syntax highlighting and bracket matching in Clojure files."
} }
+48 -32
View File
@@ -1,34 +1,50 @@
{ {
"name": "coffeescript", "name": "coffeescript",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"
"languages": [{ },
"id": "coffeescript", "contributes": {
"extensions": [ ".coffee", ".cson", ".iced" ], "languages": [
"aliases": [ "CoffeeScript", "coffeescript", "coffee" ], {
"configuration": "./language-configuration.json" "id": "coffeescript",
}], "extensions": [
"grammars": [{ ".coffee",
"language": "coffeescript", ".cson",
"scopeName": "source.coffee", ".iced"
"path": "./syntaxes/coffeescript.tmLanguage.json" ],
}], "aliases": [
"breakpoints": [ "CoffeeScript",
{ "coffeescript",
"language": "coffeescript" "coffee"
} ],
], "configuration": "./language-configuration.json"
"snippets": [{ }
"language": "coffeescript", ],
"path": "./snippets/coffeescript.code-snippets" "grammars": [
}] {
} "language": "coffeescript",
"scopeName": "source.coffee",
"path": "./syntaxes/coffeescript.tmLanguage.json"
}
],
"breakpoints": [
{
"language": "coffeescript"
}
],
"snippets": [
{
"language": "coffeescript",
"path": "./snippets/coffeescript.code-snippets"
}
]
}
} }
@@ -1,4 +1,4 @@
{ {
"displayName": "Configuration Editing", "displayName": "Configuration Editing",
"description": "Provides capabilities (advanced IntelliSense, auto-fixing) in configuration files like settings, launch, and extension recommendation files." "description": "Provides capabilities (advanced IntelliSense, auto-fixing) in configuration files like settings, launch, and extension recommendation files."
} }
+83 -83
View File
@@ -1,87 +1,87 @@
{ {
"name": "cpp", "name": "cpp",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ./build/update-grammars.js" "update-grammar": "node ./build/update-grammars.js"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "c", "id": "c",
"extensions": [ "extensions": [
".c", ".c",
".i" ".i"
], ],
"aliases": [ "aliases": [
"C", "C",
"c" "c"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
}, },
{ {
"id": "cpp", "id": "cpp",
"extensions": [ "extensions": [
".cpp", ".cpp",
".cc", ".cc",
".cxx", ".cxx",
".c++", ".c++",
".hpp", ".hpp",
".hh", ".hh",
".hxx", ".hxx",
".h++", ".h++",
".h", ".h",
".ii", ".ii",
".ino", ".ino",
".inl", ".inl",
".ipp", ".ipp",
".hpp.in", ".hpp.in",
".h.in" ".h.in"
], ],
"aliases": [ "aliases": [
"C++", "C++",
"Cpp", "Cpp",
"cpp" "cpp"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "c", "language": "c",
"scopeName": "source.c", "scopeName": "source.c",
"path": "./syntaxes/c.tmLanguage.json" "path": "./syntaxes/c.tmLanguage.json"
}, },
{ {
"language": "cpp", "language": "cpp",
"scopeName": "source.cpp.embedded.macro", "scopeName": "source.cpp.embedded.macro",
"path": "./syntaxes/cpp.embedded.macro.tmLanguage.json" "path": "./syntaxes/cpp.embedded.macro.tmLanguage.json"
}, },
{ {
"language": "cpp", "language": "cpp",
"scopeName": "source.cpp", "scopeName": "source.cpp",
"path": "./syntaxes/cpp.tmLanguage.json" "path": "./syntaxes/cpp.tmLanguage.json"
}, },
{ {
"scopeName": "source.c.platform", "scopeName": "source.c.platform",
"path": "./syntaxes/platform.tmLanguage.json" "path": "./syntaxes/platform.tmLanguage.json"
} }
], ],
"snippets": [ "snippets": [
{ {
"language": "c", "language": "c",
"path": "./snippets/c.code-snippets" "path": "./snippets/c.code-snippets"
}, },
{ {
"language": "cpp", "language": "cpp",
"path": "./snippets/cpp.code-snippets" "path": "./snippets/cpp.code-snippets"
} }
] ]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "C/C++ Language Basics", "displayName": "C/C++ Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in C/C++ files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in C/C++ files."
} }
+10 -9
View File
@@ -1,7 +1,7 @@
{ {
"name": "csharp", "name": "csharp",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
@@ -9,9 +9,8 @@
"vscode": "0.10.x" "vscode": "0.10.x"
}, },
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js dotnet/csharp-tmLanguage grammars/csharp.tmLanguage ./syntaxes/csharp.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js dotnet/csharp-tmLanguage grammars/csharp.tmLanguage ./syntaxes/csharp.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
@@ -35,9 +34,11 @@
"path": "./syntaxes/csharp.tmLanguage.json" "path": "./syntaxes/csharp.tmLanguage.json"
} }
], ],
"snippets": [{ "snippets": [
"language": "csharp", {
"path": "./snippets/csharp.code-snippets" "language": "csharp",
}] "path": "./snippets/csharp.code-snippets"
}
]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "C# Language Basics", "displayName": "C# Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in C# files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in C# files."
} }
+2 -2
View File
@@ -1,7 +1,7 @@
{ {
"name": "css", "name": "css",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "CSS Language Basics", "displayName": "CSS Language Basics",
"description": "Provides syntax highlighting and bracket matching for CSS, LESS and SCSS files." "description": "Provides syntax highlighting and bracket matching for CSS, LESS and SCSS files."
} }
+38 -38
View File
@@ -1,40 +1,40 @@
{ {
"name": "debug-auto-launch", "name": "debug-auto-launch",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "^1.5.0" "vscode": "^1.5.0"
}, },
"activationEvents": [ "activationEvents": [
"*" "*"
], ],
"main": "./out/extension", "main": "./out/extension",
"scripts": { "scripts": {
"compile": "gulp compile-extension:debug-auto-launch", "compile": "gulp compile-extension:debug-auto-launch",
"watch": "gulp watch-extension:debug-auto-launch" "watch": "gulp watch-extension:debug-auto-launch"
}, },
"contributes": { "contributes": {
"commands": [ "commands": [
{ {
"command": "extension.node-debug.toggleAutoAttach", "command": "extension.node-debug.toggleAutoAttach",
"title": "%toggle.auto.attach%", "title": "%toggle.auto.attach%",
"category": "Debug" "category": "Debug"
} }
] ]
}, },
"dependencies": { "dependencies": {
"vscode-nls": "^4.0.0" "vscode-nls": "^4.0.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^12.19.9" "@types/node": "^12.19.9"
}, },
"prettier": { "prettier": {
"printWidth": 100, "printWidth": 100,
"trailingComma": "all", "trailingComma": "all",
"singleQuote": true, "singleQuote": true,
"arrowParens": "avoid" "arrowParens": "avoid"
} }
} }
+140 -138
View File
@@ -1,143 +1,145 @@
{ {
"name": "debug-server-ready", "name": "debug-server-ready",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "^1.32.0" "vscode": "^1.32.0"
}, },
"activationEvents": [ "activationEvents": [
"onDebugResolve" "onDebugResolve"
], ],
"enableProposedApi": true, "enableProposedApi": true,
"main": "./out/extension", "main": "./out/extension",
"scripts": { "scripts": {
"compile": "gulp compile-extension:debug-server-ready", "compile": "gulp compile-extension:debug-server-ready",
"watch": "gulp watch-extension:debug-server-ready" "watch": "gulp watch-extension:debug-server-ready"
}, },
"contributes": { "contributes": {
"debuggers": [ "debuggers": [
{ {
"type": "*", "type": "*",
"configurationAttributes": { "configurationAttributes": {
"launch": { "launch": {
"properties": { "properties": {
"serverReadyAction": { "serverReadyAction": {
"oneOf": [ "oneOf": [
{ {
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"markdownDescription": "%debug.server.ready.serverReadyAction.description%", "markdownDescription": "%debug.server.ready.serverReadyAction.description%",
"default": { "default": {
"action": "openExternally" "action": "openExternally"
}, },
"properties": { "properties": {
"action": { "action": {
"type": "string", "type": "string",
"enum": [ "enum": [
"openExternally" "openExternally"
], ],
"enumDescriptions": [ "enumDescriptions": [
"%debug.server.ready.action.openExternally.description%" "%debug.server.ready.action.openExternally.description%"
], ],
"markdownDescription": "%debug.server.ready.action.description%", "markdownDescription": "%debug.server.ready.action.description%",
"default": "openExternally" "default": "openExternally"
}, },
"pattern": { "pattern": {
"type": "string", "type": "string",
"markdownDescription": "%debug.server.ready.pattern.description%", "markdownDescription": "%debug.server.ready.pattern.description%",
"default": "listening on port ([0-9]+)" "default": "listening on port ([0-9]+)"
}, },
"uriFormat": { "uriFormat": {
"type": "string", "type": "string",
"markdownDescription": "%debug.server.ready.uriFormat.description%", "markdownDescription": "%debug.server.ready.uriFormat.description%",
"default": "http://localhost:%s" "default": "http://localhost:%s"
} }
} }
}, },
{ {
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"markdownDescription": "%debug.server.ready.serverReadyAction.description%", "markdownDescription": "%debug.server.ready.serverReadyAction.description%",
"default": { "default": {
"action": "openExternally" "action": "openExternally"
}, },
"properties": { "properties": {
"action": { "action": {
"type": "string", "type": "string",
"enum": [ "enum": [
"debugWithChrome" "debugWithChrome"
], ],
"enumDescriptions": [ "enumDescriptions": [
"%debug.server.ready.action.debugWithChrome.description%" "%debug.server.ready.action.debugWithChrome.description%"
], ],
"markdownDescription": "%debug.server.ready.action.description%", "markdownDescription": "%debug.server.ready.action.description%",
"default": "openExternally" "default": "openExternally"
}, },
"pattern": { "pattern": {
"type": "string", "type": "string",
"markdownDescription": "%debug.server.ready.pattern.description%", "markdownDescription": "%debug.server.ready.pattern.description%",
"default": "listening on port ([0-9]+)" "default": "listening on port ([0-9]+)"
}, },
"uriFormat": { "uriFormat": {
"type": "string", "type": "string",
"markdownDescription": "%debug.server.ready.uriFormat.description%", "markdownDescription": "%debug.server.ready.uriFormat.description%",
"default": "http://localhost:%s" "default": "http://localhost:%s"
}, },
"webRoot": { "webRoot": {
"type": "string", "type": "string",
"markdownDescription": "%debug.server.ready.webRoot.description%", "markdownDescription": "%debug.server.ready.webRoot.description%",
"default": "${workspaceFolder}" "default": "${workspaceFolder}"
} }
} }
}, },
{ {
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"markdownDescription": "%debug.server.ready.serverReadyAction.description%", "markdownDescription": "%debug.server.ready.serverReadyAction.description%",
"default": { "default": {
"action": "startDebugging", "action": "startDebugging",
"name": "<launch browser config name>" "name": "<launch browser config name>"
}, },
"required": ["name"], "required": [
"properties": { "name"
"action": { ],
"type": "string", "properties": {
"enum": [ "action": {
"startDebugging" "type": "string",
], "enum": [
"enumDescriptions": [ "startDebugging"
"%debug.server.ready.action.startDebugging.description%" ],
], "enumDescriptions": [
"markdownDescription": "%debug.server.ready.action.description%", "%debug.server.ready.action.startDebugging.description%"
"default": "startDebugging" ],
}, "markdownDescription": "%debug.server.ready.action.description%",
"pattern": { "default": "startDebugging"
"type": "string", },
"markdownDescription": "%debug.server.ready.pattern.description%", "pattern": {
"default": "listening on port ([0-9]+)" "type": "string",
}, "markdownDescription": "%debug.server.ready.pattern.description%",
"name": { "default": "listening on port ([0-9]+)"
"type": "string", },
"markdownDescription": "%debug.server.ready.debugConfigName.description%", "name": {
"default": "Launch Browser" "type": "string",
} "markdownDescription": "%debug.server.ready.debugConfigName.description%",
} "default": "Launch Browser"
} }
] }
} }
} ]
} }
} }
} }
] }
}, }
"dependencies": { ]
"vscode-nls": "^4.0.0" },
}, "dependencies": {
"devDependencies": { "vscode-nls": "^4.0.0"
"@types/node": "^12.19.9" },
} "devDependencies": {
"@types/node": "^12.19.9"
}
} }
+51 -32
View File
@@ -1,34 +1,53 @@
{ {
"name": "docker", "name": "docker",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js moby/moby contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage ./syntaxes/docker.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js moby/moby contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage ./syntaxes/docker.tmLanguage.json"
"languages": [{ },
"id": "dockerfile", "contributes": {
"extensions": [ ".dockerfile", ".containerfile" ], "languages": [
"filenames": [ "Dockerfile", "Containerfile" ], {
"filenamePatterns": [ "Dockerfile.*", "Containerfile.*" ], "id": "dockerfile",
"aliases": [ "Docker", "Dockerfile", "Containerfile" ], "extensions": [
"configuration": "./language-configuration.json" ".dockerfile",
}], ".containerfile"
"grammars": [{ ],
"language": "dockerfile", "filenames": [
"scopeName": "source.dockerfile", "Dockerfile",
"path": "./syntaxes/docker.tmLanguage.json" "Containerfile"
}], ],
"configurationDefaults": { "filenamePatterns": [
"[dockerfile]": { "Dockerfile.*",
"editor.quickSuggestions": { "Containerfile.*"
"strings": true ],
} "aliases": [
} "Docker",
} "Dockerfile",
} "Containerfile"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dockerfile",
"scopeName": "source.dockerfile",
"path": "./syntaxes/docker.tmLanguage.json"
}
],
"configurationDefaults": {
"[dockerfile]": {
"editor.quickSuggestions": {
"strings": true
}
}
}
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Docker Language Basics", "displayName": "Docker Language Basics",
"description": "Provides syntax highlighting and bracket matching in Docker files." "description": "Provides syntax highlighting and bracket matching in Docker files."
} }
+437 -437
View File
@@ -1,445 +1,445 @@
{ {
"name": "emmet", "name": "emmet",
"displayName": "Emmet", "displayName": "Emmet",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "^1.13.0" "vscode": "^1.13.0"
}, },
"icon": "images/icon.png", "icon": "images/icon.png",
"categories": [ "categories": [
"Other" "Other"
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/microsoft/vscode-emmet" "url": "https://github.com/microsoft/vscode-emmet"
}, },
"activationEvents": [ "activationEvents": [
"onStartupFinished", "onStartupFinished",
"onCommand:emmet.expandAbbreviation", "onCommand:emmet.expandAbbreviation",
"onLanguage:html", "onLanguage:html",
"onLanguage:css", "onLanguage:css",
"onLanguage:scss", "onLanguage:scss",
"onLanguage:less" "onLanguage:less"
], ],
"main": "./out/node/emmetNodeMain", "main": "./out/node/emmetNodeMain",
"browser": "./dist/browser/emmetBrowserMain", "browser": "./dist/browser/emmetBrowserMain",
"contributes": { "contributes": {
"configuration": { "configuration": {
"type": "object", "type": "object",
"title": "Emmet", "title": "Emmet",
"properties": { "properties": {
"emmet.showExpandedAbbreviation": { "emmet.showExpandedAbbreviation": {
"type": [ "type": [
"string" "string"
], ],
"enum": [ "enum": [
"never", "never",
"always", "always",
"inMarkupAndStylesheetFilesOnly" "inMarkupAndStylesheetFilesOnly"
], ],
"default": "always", "default": "always",
"markdownDescription": "%emmetShowExpandedAbbreviation%" "markdownDescription": "%emmetShowExpandedAbbreviation%"
},
"emmet.showAbbreviationSuggestions": {
"type": "boolean",
"default": true,
"markdownDescription": "%emmetShowAbbreviationSuggestions%"
},
"emmet.includeLanguages": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"default": {},
"markdownDescription": "%emmetIncludeLanguages%"
},
"emmet.variables": {
"type": "object",
"properties": {
"lang": {
"type": "string",
"default": "en"
},
"charset": {
"type": "string",
"default": "UTF-8"
}
},
"default": {},
"description": "%emmetVariables%"
},
"emmet.syntaxProfiles": {
"type": "object",
"default": {},
"description": "%emmetSyntaxProfiles%"
},
"emmet.excludeLanguages": {
"type": "array",
"default": [
"markdown"
],
"description": "%emmetExclude%"
},
"emmet.extensionsPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "%emmetExtensionsPath%"
},
"emmet.triggerExpansionOnTab": {
"type": "boolean",
"default": false,
"description": "%emmetTriggerExpansionOnTab%"
},
"emmet.preferences": {
"type": "object",
"default": {},
"description": "%emmetPreferences%",
"properties": {
"css.intUnit": {
"type": "string",
"default": "px",
"description": "%emmetPreferencesIntUnit%"
},
"css.floatUnit": {
"type": "string",
"default": "em",
"description": "%emmetPreferencesFloatUnit%"
},
"css.propertyEnd": {
"type": "string",
"default": ";",
"description": "%emmetPreferencesCssAfter%"
},
"sass.propertyEnd": {
"type": "string",
"default": "",
"description": "%emmetPreferencesSassAfter%"
},
"stylus.propertyEnd": {
"type": "string",
"default": "",
"description": "%emmetPreferencesStylusAfter%"
},
"css.valueSeparator": {
"type": "string",
"default": ": ",
"description": "%emmetPreferencesCssBetween%"
},
"sass.valueSeparator": {
"type": "string",
"default": ": ",
"description": "%emmetPreferencesSassBetween%"
},
"stylus.valueSeparator": {
"type": "string",
"default": " ",
"description": "%emmetPreferencesStylusBetween%"
},
"bem.elementSeparator": {
"type": "string",
"default": "__",
"description": "%emmetPreferencesBemElementSeparator%"
},
"bem.modifierSeparator": {
"type": "string",
"default": "_",
"description": "%emmetPreferencesBemModifierSeparator%"
},
"filter.commentBefore": {
"type": "string",
"default": "",
"description": "%emmetPreferencesFilterCommentBefore%"
},
"filter.commentAfter": {
"type": "string",
"default": "\n<!-- /[#ID][.CLASS] -->",
"description": "%emmetPreferencesFilterCommentAfter%"
},
"filter.commentTrigger": {
"type": "array",
"default": [
"id",
"class"
],
"description": "%emmetPreferencesFilterCommentTrigger%"
},
"format.noIndentTags": {
"type": "array",
"default": [
"html"
],
"description": "%emmetPreferencesFormatNoIndentTags%"
},
"format.forceIndentationForTags": {
"type": "array",
"default": [
"body"
],
"description": "%emmetPreferencesFormatForceIndentTags%"
},
"profile.allowCompactBoolean": {
"type": "boolean",
"default": false,
"description": "%emmetPreferencesAllowCompactBoolean%"
},
"css.webkitProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssWebkitProperties%"
},
"css.mozProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssMozProperties%"
},
"css.oProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssOProperties%"
},
"css.msProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssMsProperties%"
},
"css.fuzzySearchMinScore": {
"type": "number",
"default": 0.3,
"description": "%emmetPreferencesCssFuzzySearchMinScore%"
}
}
},
"emmet.showSuggestionsAsSnippets": {
"type": "boolean",
"default": false,
"markdownDescription": "%emmetShowSuggestionsAsSnippets%"
},
"emmet.optimizeStylesheetParsing": {
"type": "boolean",
"default": true,
"markdownDescription": "%emmetOptimizeStylesheetParsing%"
}
}
}, },
"commands": [ "emmet.showAbbreviationSuggestions": {
{ "type": "boolean",
"command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation", "default": true,
"title": "%command.wrapIndividualLinesWithAbbreviation%", "markdownDescription": "%emmetShowAbbreviationSuggestions%"
"category": "Emmet" },
"emmet.includeLanguages": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"default": {},
"markdownDescription": "%emmetIncludeLanguages%"
},
"emmet.variables": {
"type": "object",
"properties": {
"lang": {
"type": "string",
"default": "en"
}, },
{ "charset": {
"command": "editor.emmet.action.wrapWithAbbreviation", "type": "string",
"title": "%command.wrapWithAbbreviation%", "default": "UTF-8"
"category": "Emmet"
},
{
"command": "editor.emmet.action.removeTag",
"title": "%command.removeTag%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.updateTag",
"title": "%command.updateTag%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.matchTag",
"title": "%command.matchTag%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.balanceIn",
"title": "%command.balanceIn%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.balanceOut",
"title": "%command.balanceOut%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.prevEditPoint",
"title": "%command.prevEditPoint%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.nextEditPoint",
"title": "%command.nextEditPoint%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.mergeLines",
"title": "%command.mergeLines%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.selectPrevItem",
"title": "%command.selectPrevItem%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.selectNextItem",
"title": "%command.selectNextItem%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.splitJoinTag",
"title": "%command.splitJoinTag%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.toggleComment",
"title": "%command.toggleComment%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.evaluateMathExpression",
"title": "%command.evaluateMathExpression%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.updateImageSize",
"title": "%command.updateImageSize%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.incrementNumberByOneTenth",
"title": "%command.incrementNumberByOneTenth%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.incrementNumberByOne",
"title": "%command.incrementNumberByOne%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.incrementNumberByTen",
"title": "%command.incrementNumberByTen%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.decrementNumberByOneTenth",
"title": "%command.decrementNumberByOneTenth%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.decrementNumberByOne",
"title": "%command.decrementNumberByOne%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.decrementNumberByTen",
"title": "%command.decrementNumberByTen%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.reflectCSSValue",
"title": "%command.reflectCSSValue%",
"category": "Emmet"
},
{
"command": "workbench.action.showEmmetCommands",
"title": "%command.showEmmetCommands%",
"category": ""
} }
], },
"menus": { "default": {},
"commandPalette": [ "description": "%emmetVariables%"
{ },
"command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation" "emmet.syntaxProfiles": {
}, "type": "object",
{ "default": {},
"command": "editor.emmet.action.wrapWithAbbreviation" "description": "%emmetSyntaxProfiles%"
}, },
{ "emmet.excludeLanguages": {
"command": "editor.emmet.action.removeTag" "type": "array",
}, "default": [
{ "markdown"
"command": "editor.emmet.action.updateTag" ],
}, "description": "%emmetExclude%"
{ },
"command": "editor.emmet.action.matchTag" "emmet.extensionsPath": {
}, "type": [
{ "string",
"command": "editor.emmet.action.balanceIn" "null"
}, ],
{ "default": null,
"command": "editor.emmet.action.balanceOut" "description": "%emmetExtensionsPath%"
}, },
{ "emmet.triggerExpansionOnTab": {
"command": "editor.emmet.action.prevEditPoint" "type": "boolean",
}, "default": false,
{ "description": "%emmetTriggerExpansionOnTab%"
"command": "editor.emmet.action.nextEditPoint" },
}, "emmet.preferences": {
{ "type": "object",
"command": "editor.emmet.action.mergeLines" "default": {},
}, "description": "%emmetPreferences%",
{ "properties": {
"command": "editor.emmet.action.selectPrevItem" "css.intUnit": {
}, "type": "string",
{ "default": "px",
"command": "editor.emmet.action.selectNextItem" "description": "%emmetPreferencesIntUnit%"
}, },
{ "css.floatUnit": {
"command": "editor.emmet.action.splitJoinTag" "type": "string",
}, "default": "em",
{ "description": "%emmetPreferencesFloatUnit%"
"command": "editor.emmet.action.toggleComment" },
}, "css.propertyEnd": {
{ "type": "string",
"command": "editor.emmet.action.evaluateMathExpression" "default": ";",
}, "description": "%emmetPreferencesCssAfter%"
{ },
"command": "editor.emmet.action.updateImageSize", "sass.propertyEnd": {
"when": "resourceScheme =~ /^file$/" "type": "string",
}, "default": "",
{ "description": "%emmetPreferencesSassAfter%"
"command": "editor.emmet.action.incrementNumberByOneTenth" },
}, "stylus.propertyEnd": {
{ "type": "string",
"command": "editor.emmet.action.incrementNumberByOne" "default": "",
}, "description": "%emmetPreferencesStylusAfter%"
{ },
"command": "editor.emmet.action.incrementNumberByTen" "css.valueSeparator": {
}, "type": "string",
{ "default": ": ",
"command": "editor.emmet.action.decrementNumberByOneTenth" "description": "%emmetPreferencesCssBetween%"
}, },
{ "sass.valueSeparator": {
"command": "editor.emmet.action.decrementNumberByOne" "type": "string",
}, "default": ": ",
{ "description": "%emmetPreferencesSassBetween%"
"command": "editor.emmet.action.decrementNumberByTen" },
}, "stylus.valueSeparator": {
{ "type": "string",
"command": "editor.emmet.action.reflectCSSValue" "default": " ",
} "description": "%emmetPreferencesStylusBetween%"
] },
"bem.elementSeparator": {
"type": "string",
"default": "__",
"description": "%emmetPreferencesBemElementSeparator%"
},
"bem.modifierSeparator": {
"type": "string",
"default": "_",
"description": "%emmetPreferencesBemModifierSeparator%"
},
"filter.commentBefore": {
"type": "string",
"default": "",
"description": "%emmetPreferencesFilterCommentBefore%"
},
"filter.commentAfter": {
"type": "string",
"default": "\n<!-- /[#ID][.CLASS] -->",
"description": "%emmetPreferencesFilterCommentAfter%"
},
"filter.commentTrigger": {
"type": "array",
"default": [
"id",
"class"
],
"description": "%emmetPreferencesFilterCommentTrigger%"
},
"format.noIndentTags": {
"type": "array",
"default": [
"html"
],
"description": "%emmetPreferencesFormatNoIndentTags%"
},
"format.forceIndentationForTags": {
"type": "array",
"default": [
"body"
],
"description": "%emmetPreferencesFormatForceIndentTags%"
},
"profile.allowCompactBoolean": {
"type": "boolean",
"default": false,
"description": "%emmetPreferencesAllowCompactBoolean%"
},
"css.webkitProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssWebkitProperties%"
},
"css.mozProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssMozProperties%"
},
"css.oProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssOProperties%"
},
"css.msProperties": {
"type": "string",
"default": null,
"markdownDescription": "%emmetPreferencesCssMsProperties%"
},
"css.fuzzySearchMinScore": {
"type": "number",
"default": 0.3,
"description": "%emmetPreferencesCssFuzzySearchMinScore%"
}
}
},
"emmet.showSuggestionsAsSnippets": {
"type": "boolean",
"default": false,
"markdownDescription": "%emmetShowSuggestionsAsSnippets%"
},
"emmet.optimizeStylesheetParsing": {
"type": "boolean",
"default": true,
"markdownDescription": "%emmetOptimizeStylesheetParsing%"
} }
}
}, },
"scripts": { "commands": [
"watch": "gulp watch-extension:emmet", {
"compile": "gulp compile-extension:emmet", "command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation",
"deps": "yarn add vscode-emmet-helper" "title": "%command.wrapIndividualLinesWithAbbreviation%",
}, "category": "Emmet"
"devDependencies": { },
"@types/node": "^12.19.9", {
"emmet": "https://github.com/rzhao271/emmet.git#1b2df677d8925ef5ea6da9df8845968403979a0a" "command": "editor.emmet.action.wrapWithAbbreviation",
}, "title": "%command.wrapWithAbbreviation%",
"dependencies": { "category": "Emmet"
"@emmetio/abbreviation": "^2.2.0", },
"@emmetio/css-parser": "ramya-rao-a/css-parser#vscode", {
"@emmetio/html-matcher": "^0.3.3", "command": "editor.emmet.action.removeTag",
"@emmetio/math-expression": "^1.0.4", "title": "%command.removeTag%",
"image-size": "^0.5.2", "category": "Emmet"
"vscode-emmet-helper": "2.2.4-2", },
"vscode-languageserver-textdocument": "^1.0.1" {
"command": "editor.emmet.action.updateTag",
"title": "%command.updateTag%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.matchTag",
"title": "%command.matchTag%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.balanceIn",
"title": "%command.balanceIn%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.balanceOut",
"title": "%command.balanceOut%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.prevEditPoint",
"title": "%command.prevEditPoint%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.nextEditPoint",
"title": "%command.nextEditPoint%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.mergeLines",
"title": "%command.mergeLines%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.selectPrevItem",
"title": "%command.selectPrevItem%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.selectNextItem",
"title": "%command.selectNextItem%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.splitJoinTag",
"title": "%command.splitJoinTag%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.toggleComment",
"title": "%command.toggleComment%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.evaluateMathExpression",
"title": "%command.evaluateMathExpression%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.updateImageSize",
"title": "%command.updateImageSize%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.incrementNumberByOneTenth",
"title": "%command.incrementNumberByOneTenth%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.incrementNumberByOne",
"title": "%command.incrementNumberByOne%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.incrementNumberByTen",
"title": "%command.incrementNumberByTen%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.decrementNumberByOneTenth",
"title": "%command.decrementNumberByOneTenth%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.decrementNumberByOne",
"title": "%command.decrementNumberByOne%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.decrementNumberByTen",
"title": "%command.decrementNumberByTen%",
"category": "Emmet"
},
{
"command": "editor.emmet.action.reflectCSSValue",
"title": "%command.reflectCSSValue%",
"category": "Emmet"
},
{
"command": "workbench.action.showEmmetCommands",
"title": "%command.showEmmetCommands%",
"category": ""
}
],
"menus": {
"commandPalette": [
{
"command": "editor.emmet.action.wrapIndividualLinesWithAbbreviation"
},
{
"command": "editor.emmet.action.wrapWithAbbreviation"
},
{
"command": "editor.emmet.action.removeTag"
},
{
"command": "editor.emmet.action.updateTag"
},
{
"command": "editor.emmet.action.matchTag"
},
{
"command": "editor.emmet.action.balanceIn"
},
{
"command": "editor.emmet.action.balanceOut"
},
{
"command": "editor.emmet.action.prevEditPoint"
},
{
"command": "editor.emmet.action.nextEditPoint"
},
{
"command": "editor.emmet.action.mergeLines"
},
{
"command": "editor.emmet.action.selectPrevItem"
},
{
"command": "editor.emmet.action.selectNextItem"
},
{
"command": "editor.emmet.action.splitJoinTag"
},
{
"command": "editor.emmet.action.toggleComment"
},
{
"command": "editor.emmet.action.evaluateMathExpression"
},
{
"command": "editor.emmet.action.updateImageSize",
"when": "resourceScheme =~ /^file$/"
},
{
"command": "editor.emmet.action.incrementNumberByOneTenth"
},
{
"command": "editor.emmet.action.incrementNumberByOne"
},
{
"command": "editor.emmet.action.incrementNumberByTen"
},
{
"command": "editor.emmet.action.decrementNumberByOneTenth"
},
{
"command": "editor.emmet.action.decrementNumberByOne"
},
{
"command": "editor.emmet.action.decrementNumberByTen"
},
{
"command": "editor.emmet.action.reflectCSSValue"
}
]
} }
},
"scripts": {
"watch": "gulp watch-extension:emmet",
"compile": "gulp compile-extension:emmet",
"deps": "yarn add vscode-emmet-helper"
},
"devDependencies": {
"@types/node": "^12.19.9",
"emmet": "https://github.com/rzhao271/emmet.git#1b2df677d8925ef5ea6da9df8845968403979a0a"
},
"dependencies": {
"@emmetio/abbreviation": "^2.2.0",
"@emmetio/css-parser": "ramya-rao-a/css-parser#vscode",
"@emmetio/html-matcher": "^0.3.3",
"@emmetio/math-expression": "^1.0.4",
"image-size": "^0.5.2",
"vscode-emmet-helper": "2.2.4-2",
"vscode-languageserver-textdocument": "^1.0.1"
}
} }
+65 -62
View File
@@ -1,64 +1,67 @@
{ {
"name": "extension-editing", "name": "extension-editing",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "^1.4.0" "vscode": "^1.4.0"
}, },
"activationEvents": [ "activationEvents": [
"onLanguage:json", "onLanguage:json",
"onLanguage:markdown", "onLanguage:markdown",
"onLanguage:typescript" "onLanguage:typescript"
], ],
"main": "./out/extensionEditingMain", "main": "./out/extensionEditingMain",
"browser": "./dist/browser/extensionEditingBrowserMain", "browser": "./dist/browser/extensionEditingBrowserMain",
"scripts": { "scripts": {
"compile": "gulp compile-extension:extension-editing", "compile": "gulp compile-extension:extension-editing",
"watch": "gulp watch-extension:extension-editing" "watch": "gulp watch-extension:extension-editing"
}, },
"dependencies": { "dependencies": {
"jsonc-parser": "^2.2.1", "jsonc-parser": "^2.2.1",
"markdown-it": "^8.3.1", "markdown-it": "^8.3.1",
"parse5": "^3.0.2", "parse5": "^3.0.2",
"vscode-nls": "^4.1.1" "vscode-nls": "^4.1.1"
}, },
"contributes": { "contributes": {
"jsonValidation": [ "jsonValidation": [
{ {
"fileMatch": "package.json", "fileMatch": "package.json",
"url": "vscode://schemas/vscode-extensions" "url": "vscode://schemas/vscode-extensions"
}, },
{ {
"fileMatch": "*language-configuration.json", "fileMatch": "*language-configuration.json",
"url": "vscode://schemas/language-configuration" "url": "vscode://schemas/language-configuration"
}, },
{ {
"fileMatch": ["*icon-theme.json", "!*product-icon-theme.json"], "fileMatch": [
"url": "vscode://schemas/icon-theme" "*icon-theme.json",
}, "!*product-icon-theme.json"
{ ],
"fileMatch": "*product-icon-theme.json", "url": "vscode://schemas/icon-theme"
"url": "vscode://schemas/product-icon-theme" },
}, {
{ "fileMatch": "*product-icon-theme.json",
"fileMatch": "*color-theme.json", "url": "vscode://schemas/product-icon-theme"
"url": "vscode://schemas/color-theme" },
} {
], "fileMatch": "*color-theme.json",
"languages": [ "url": "vscode://schemas/color-theme"
{ }
"id": "ignore", ],
"filenames": [ "languages": [
".vscodeignore" {
] "id": "ignore",
} "filenames": [
] ".vscodeignore"
}, ]
"devDependencies": { }
"@types/markdown-it": "0.0.2", ]
"@types/node": "^12.19.9" },
} "devDependencies": {
"@types/markdown-it": "0.0.2",
"@types/node": "^12.19.9"
}
} }
@@ -1,4 +1,4 @@
{ {
"displayName": "Extension Authoring", "displayName": "Extension Authoring",
"description": "Provides linting capabilities for authoring extensions." "description": "Provides linting capabilities for authoring extensions."
} }
+44 -27
View File
@@ -1,29 +1,46 @@
{ {
"name": "fsharp", "name": "fsharp",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js ionide/ionide-fsgrammar grammars/fsharp.json ./syntaxes/fsharp.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js ionide/ionide-fsgrammar grammars/fsharp.json ./syntaxes/fsharp.tmLanguage.json"
"languages": [{ },
"id": "fsharp", "contributes": {
"extensions": [ ".fs", ".fsi", ".fsx", ".fsscript" ], "languages": [
"aliases": [ "F#", "FSharp", "fsharp" ], {
"configuration": "./language-configuration.json" "id": "fsharp",
}], "extensions": [
"grammars": [{ ".fs",
"language": "fsharp", ".fsi",
"scopeName": "source.fsharp", ".fsx",
"path": "./syntaxes/fsharp.tmLanguage.json" ".fsscript"
}], ],
"snippets": [{ "aliases": [
"language": "fsharp", "F#",
"path": "./snippets/fsharp.code-snippets" "FSharp",
}] "fsharp"
} ],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fsharp",
"scopeName": "source.fsharp",
"path": "./syntaxes/fsharp.tmLanguage.json"
}
],
"snippets": [
{
"language": "fsharp",
"path": "./snippets/fsharp.code-snippets"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "F# Language Basics", "displayName": "F# Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in F# files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in F# files."
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Git UI", "displayName": "Git UI",
"description": "Git SCM UI Integration" "description": "Git SCM UI Integration"
} }
+38 -38
View File
@@ -1,40 +1,40 @@
{ {
"name": "go", "name": "go",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js jeff-hykin/better-go-syntax export/generated.tmLanguage.json ./syntaxes/go.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js jeff-hykin/better-go-syntax export/generated.tmLanguage.json ./syntaxes/go.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "go", "id": "go",
"extensions": [ "extensions": [
".go" ".go"
], ],
"aliases": [ "aliases": [
"Go" "Go"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "go", "language": "go",
"scopeName": "source.go", "scopeName": "source.go",
"path": "./syntaxes/go.tmLanguage.json" "path": "./syntaxes/go.tmLanguage.json"
} }
], ],
"configurationDefaults": { "configurationDefaults": {
"[go]": { "[go]": {
"editor.insertSpaces": false "editor.insertSpaces": false
} }
} }
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Go Language Basics", "displayName": "Go Language Basics",
"description": "Provides syntax highlighting and bracket matching in Go files." "description": "Provides syntax highlighting and bracket matching in Go files."
} }
+48 -27
View File
@@ -1,32 +1,53 @@
{ {
"name": "groovy", "name": "groovy",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"vscode": "*"
},
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js textmate/groovy.tmbundle Syntaxes/Groovy.tmLanguage ./syntaxes/groovy.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js textmate/groovy.tmbundle Syntaxes/Groovy.tmLanguage ./syntaxes/groovy.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [{ "languages": [
"id": "groovy", {
"aliases": ["Groovy", "groovy"], "id": "groovy",
"extensions": [".groovy", ".gvy", ".gradle", ".jenkinsfile", ".nf"], "aliases": [
"filenames": [ "Jenkinsfile" ], "Groovy",
"filenamePatterns": ["Jenkinsfile.*"], "groovy"
"firstLine": "^#!.*\\bgroovy\\b", ],
"configuration": "./language-configuration.json" "extensions": [
}], ".groovy",
"grammars": [{ ".gvy",
"language": "groovy", ".gradle",
"scopeName": "source.groovy", ".jenkinsfile",
"path": "./syntaxes/groovy.tmLanguage.json" ".nf"
}], ],
"snippets": [{ "filenames": [
"language": "groovy", "Jenkinsfile"
"path": "./snippets/groovy.code-snippets" ],
}] "filenamePatterns": [
} "Jenkinsfile.*"
],
"firstLine": "^#!.*\\bgroovy\\b",
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "groovy",
"scopeName": "source.groovy",
"path": "./syntaxes/groovy.tmLanguage.json"
}
],
"snippets": [
{
"language": "groovy",
"path": "./snippets/groovy.code-snippets"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Groovy Language Basics", "displayName": "Groovy Language Basics",
"description": "Provides snippets, syntax highlighting and bracket matching in Groovy files." "description": "Provides snippets, syntax highlighting and bracket matching in Groovy files."
} }
+1 -1
View File
@@ -4,4 +4,4 @@
"config.gulp.autoDetect": "Controls whether auto detection of Gulp tasks is on or off. Default is on.", "config.gulp.autoDetect": "Controls whether auto detection of Gulp tasks is on or off. Default is on.",
"gulp.taskDefinition.type.description": "The Gulp task to customize.", "gulp.taskDefinition.type.description": "The Gulp task to customize.",
"gulp.taskDefinition.file.description": "The Gulp file that provides the task. Can be omitted." "gulp.taskDefinition.file.description": "The Gulp file that provides the task. Can be omitted."
} }
+29 -16
View File
@@ -1,7 +1,7 @@
{ {
"name": "handlebars", "name": "handlebars",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
@@ -11,18 +11,31 @@
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js daaain/Handlebars grammars/Handlebars.json ./syntaxes/Handlebars.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js daaain/Handlebars grammars/Handlebars.json ./syntaxes/Handlebars.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [{ "languages": [
"id": "handlebars", {
"extensions": [ ".handlebars", ".hbs", ".hjs" ], "id": "handlebars",
"aliases": [ "Handlebars", "handlebars" ], "extensions": [
"mimetypes": ["text/x-handlebars-template"], ".handlebars",
"configuration": "./language-configuration.json" ".hbs",
}], ".hjs"
"grammars": [{ ],
"language": "handlebars", "aliases": [
"scopeName": "text.html.handlebars", "Handlebars",
"path": "./syntaxes/Handlebars.tmLanguage.json" "handlebars"
}] ],
"mimetypes": [
"text/x-handlebars-template"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "handlebars",
"scopeName": "text.html.handlebars",
"path": "./syntaxes/Handlebars.tmLanguage.json"
}
]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Handlebars Language Basics", "displayName": "Handlebars Language Basics",
"description": "Provides syntax highlighting and bracket matching in Handlebars files." "description": "Provides syntax highlighting and bracket matching in Handlebars files."
} }
+42 -24
View File
@@ -1,25 +1,43 @@
{ {
"name": "hlsl", "name": "hlsl",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js tgjones/shaders-tmLanguage grammars/hlsl.json ./syntaxes/hlsl.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js tgjones/shaders-tmLanguage grammars/hlsl.json ./syntaxes/hlsl.tmLanguage.json"
"languages": [{ },
"id": "hlsl", "contributes": {
"extensions": [".hlsl",".hlsli",".fx",".fxh",".vsh",".psh",".cginc",".compute"], "languages": [
"aliases": ["HLSL", "hlsl"], {
"configuration": "./language-configuration.json" "id": "hlsl",
}], "extensions": [
"grammars": [{ ".hlsl",
"language": "hlsl", ".hlsli",
"path": "./syntaxes/hlsl.tmLanguage.json", ".fx",
"scopeName":"source.hlsl" ".fxh",
}] ".vsh",
} ".psh",
} ".cginc",
".compute"
],
"aliases": [
"HLSL",
"hlsl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hlsl",
"path": "./syntaxes/hlsl.tmLanguage.json",
"scopeName": "source.hlsl"
}
]
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "HLSL Language Basics", "displayName": "HLSL Language Basics",
"description": "Provides syntax highlighting and bracket matching in HLSL files." "description": "Provides syntax highlighting and bracket matching in HLSL files."
} }
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "html", "name": "html",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "HTML Language Basics", "displayName": "HTML Language Basics",
"description": "Provides syntax highlighting, bracket matching & snippets in HTML files." "description": "Provides syntax highlighting, bracket matching & snippets in HTML files."
} }
+64 -35
View File
@@ -1,37 +1,66 @@
{ {
"name": "ini", "name": "ini",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js textmate/ini.tmbundle Syntaxes/Ini.plist ./syntaxes/ini.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js textmate/ini.tmbundle Syntaxes/Ini.plist ./syntaxes/ini.tmLanguage.json"
"languages": [{ },
"id": "ini", "contributes": {
"extensions": [ ".ini"], "languages": [
"aliases": [ "Ini", "ini" ], {
"configuration": "./ini.language-configuration.json" "id": "ini",
}, "extensions": [
{ ".ini"
"id": "properties", ],
"extensions": [ ".properties", ".cfg", ".conf", ".directory", ".gitattributes", ".gitconfig", ".gitmodules", ".editorconfig" ], "aliases": [
"filenames": [ "gitconfig" ], "Ini",
"filenamePatterns": [ "**/.config/git/config", "**/.git/config" ], "ini"
"aliases": [ "Properties", "properties" ], ],
"configuration": "./properties.language-configuration.json" "configuration": "./ini.language-configuration.json"
}], },
"grammars": [{ {
"language": "ini", "id": "properties",
"scopeName": "source.ini", "extensions": [
"path": "./syntaxes/ini.tmLanguage.json" ".properties",
},{ ".cfg",
"language": "properties", ".conf",
"scopeName": "source.ini", ".directory",
"path": "./syntaxes/ini.tmLanguage.json" ".gitattributes",
}] ".gitconfig",
} ".gitmodules",
".editorconfig"
],
"filenames": [
"gitconfig"
],
"filenamePatterns": [
"**/.config/git/config",
"**/.git/config"
],
"aliases": [
"Properties",
"properties"
],
"configuration": "./properties.language-configuration.json"
}
],
"grammars": [
{
"language": "ini",
"scopeName": "source.ini",
"path": "./syntaxes/ini.tmLanguage.json"
},
{
"language": "properties",
"scopeName": "source.ini",
"path": "./syntaxes/ini.tmLanguage.json"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Ini Language Basics", "displayName": "Ini Language Basics",
"description": "Provides syntax highlighting and bracket matching in Ini files." "description": "Provides syntax highlighting and bracket matching in Ini files."
} }
+1 -1
View File
@@ -4,4 +4,4 @@
"jake.taskDefinition.type.description": "The Jake task to customize.", "jake.taskDefinition.type.description": "The Jake task to customize.",
"jake.taskDefinition.file.description": "The Jake file that provides the task. Can be omitted.", "jake.taskDefinition.file.description": "The Jake file that provides the task. Can be omitted.",
"config.jake.autoDetect": "Controls whether auto detection of Jake tasks is on or off. Default is on." "config.jake.autoDetect": "Controls whether auto detection of Jake tasks is on or off. Default is on."
} }
+41 -27
View File
@@ -1,29 +1,43 @@
{ {
"name": "java", "name": "java",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-java grammars/java.cson ./syntaxes/java.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js atom/language-java grammars/java.cson ./syntaxes/java.tmLanguage.json"
"languages": [{ },
"id": "java", "contributes": {
"extensions": [ ".java", ".jav" ], "languages": [
"aliases": [ "Java", "java" ], {
"configuration": "./language-configuration.json" "id": "java",
}], "extensions": [
"grammars": [{ ".java",
"language": "java", ".jav"
"scopeName": "source.java", ],
"path": "./syntaxes/java.tmLanguage.json" "aliases": [
}], "Java",
"snippets": [{ "java"
"language": "java", ],
"path": "./snippets/java.code-snippets" "configuration": "./language-configuration.json"
}] }
} ],
"grammars": [
{
"language": "java",
"scopeName": "source.java",
"path": "./syntaxes/java.tmLanguage.json"
}
],
"snippets": [
{
"language": "java",
"path": "./snippets/java.code-snippets"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Java Language Basics", "displayName": "Java Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in Java files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in Java files."
} }
+48 -16
View File
@@ -94,27 +94,59 @@
{ {
"language": "javascript", "language": "javascript",
"scopes": { "scopes": {
"property": ["variable.other.property.js"], "property": [
"property.readonly": ["variable.other.constant.property.js"], "variable.other.property.js"
"variable": ["variable.other.readwrite.js"], ],
"variable.readonly": ["variable.other.constant.object.js"], "property.readonly": [
"function": ["entity.name.function.js"], "variable.other.constant.property.js"
"namespace": ["entity.name.type.module.js"], ],
"variable.defaultLibrary": ["support.variable.js"], "variable": [
"function.defaultLibrary": ["support.function.js"] "variable.other.readwrite.js"
],
"variable.readonly": [
"variable.other.constant.object.js"
],
"function": [
"entity.name.function.js"
],
"namespace": [
"entity.name.type.module.js"
],
"variable.defaultLibrary": [
"support.variable.js"
],
"function.defaultLibrary": [
"support.function.js"
]
} }
}, },
{ {
"language": "javascriptreact", "language": "javascriptreact",
"scopes": { "scopes": {
"property": ["variable.other.property.jsx"], "property": [
"property.readonly": ["variable.other.constant.property.jsx"], "variable.other.property.jsx"
"variable": ["variable.other.readwrite.jsx"], ],
"variable.readonly": ["variable.other.constant.object.jsx"], "property.readonly": [
"function": ["entity.name.function.jsx"], "variable.other.constant.property.jsx"
"namespace": ["entity.name.type.module.jsx"], ],
"variable.defaultLibrary": ["support.variable.js"], "variable": [
"function.defaultLibrary": ["support.function.js"] "variable.other.readwrite.jsx"
],
"variable.readonly": [
"variable.other.constant.object.jsx"
],
"function": [
"entity.name.function.jsx"
],
"namespace": [
"entity.name.type.module.jsx"
],
"variable.defaultLibrary": [
"support.variable.js"
],
"function.defaultLibrary": [
"support.function.js"
]
} }
} }
], ],
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "JavaScript Language Basics", "displayName": "JavaScript Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in JavaScript files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in JavaScript files."
} }
+130 -130
View File
@@ -1,139 +1,139 @@
{ {
"name": "json-language-features", "name": "json-language-features",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": { "engines": {
"vscode": "0.10.x" "vscode": "0.10.x"
}, },
"icon": "icons/json.png", "icon": "icons/json.png",
"activationEvents": [ "activationEvents": [
"onLanguage:json", "onLanguage:json",
"onLanguage:jsonc" "onLanguage:jsonc"
], ],
"main": "./client/out/node/jsonClientMain", "main": "./client/out/node/jsonClientMain",
"browser": "./client/dist/browser/jsonClientMain", "browser": "./client/dist/browser/jsonClientMain",
"enableProposedApi": true, "enableProposedApi": true,
"scripts": { "scripts": {
"compile": "gulp compile-extension:json-language-features-client compile-extension:json-language-features-server", "compile": "gulp compile-extension:json-language-features-client compile-extension:json-language-features-server",
"watch": "gulp watch-extension:json-language-features-client watch-extension:json-language-features-server", "watch": "gulp watch-extension:json-language-features-client watch-extension:json-language-features-server",
"install-client-next": "yarn add vscode-languageclient@next" "install-client-next": "yarn add vscode-languageclient@next"
}, },
"categories": [ "categories": [
"Programming Languages" "Programming Languages"
], ],
"contributes": { "contributes": {
"configuration": { "configuration": {
"id": "json", "id": "json",
"order": 20, "order": 20,
"type": "object",
"title": "JSON",
"properties": {
"json.schemas": {
"type": "array",
"scope": "resource",
"description": "%json.schemas.desc%",
"items": {
"type": "object", "type": "object",
"title": "JSON", "default": {
"properties": { "fileMatch": [
"json.schemas": { "/myfile"
"type": "array", ],
"scope": "resource", "url": "schemaURL"
"description": "%json.schemas.desc%",
"items": {
"type": "object",
"default": {
"fileMatch": [
"/myfile"
],
"url": "schemaURL"
},
"properties": {
"url": {
"type": "string",
"default": "/user.schema.json",
"description": "%json.schemas.url.desc%"
},
"fileMatch": {
"type": "array",
"items": {
"type": "string",
"default": "MyFile.json",
"description": "%json.schemas.fileMatch.item.desc%"
},
"minItems": 1,
"description": "%json.schemas.fileMatch.desc%"
},
"schema": {
"$ref": "http://json-schema.org/draft-07/schema#",
"description": "%json.schemas.schema.desc%"
}
}
}
},
"json.format.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "%json.format.enable.desc%"
},
"json.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "%json.tracing.desc%"
},
"json.colorDecorators.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "%json.colorDecorators.enable.desc%",
"deprecationMessage": "%json.colorDecorators.enable.deprecationMessage%"
},
"json.maxItemsComputed": {
"type": "number",
"default": 5000,
"description": "%json.maxItemsComputed.desc%"
},
"json.schemaDownload.enable": {
"type": "boolean",
"default": true,
"description": "%json.enableSchemaDownload.desc%",
"tags": [
"usesOnlineServices"
]
}
}
},
"configurationDefaults": {
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
}, },
"[jsonc]": { "properties": {
"editor.quickSuggestions": { "url": {
"strings": true "type": "string",
"default": "/user.schema.json",
"description": "%json.schemas.url.desc%"
},
"fileMatch": {
"type": "array",
"items": {
"type": "string",
"default": "MyFile.json",
"description": "%json.schemas.fileMatch.item.desc%"
}, },
"editor.suggest.insertMode": "replace" "minItems": 1,
"description": "%json.schemas.fileMatch.desc%"
},
"schema": {
"$ref": "http://json-schema.org/draft-07/schema#",
"description": "%json.schemas.schema.desc%"
}
} }
}
}, },
"jsonValidation": [ "json.format.enable": {
{ "type": "boolean",
"fileMatch": "*.schema.json", "scope": "window",
"url": "http://json-schema.org/draft-07/schema#" "default": true,
} "description": "%json.format.enable.desc%"
] },
"json.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "%json.tracing.desc%"
},
"json.colorDecorators.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "%json.colorDecorators.enable.desc%",
"deprecationMessage": "%json.colorDecorators.enable.deprecationMessage%"
},
"json.maxItemsComputed": {
"type": "number",
"default": 5000,
"description": "%json.maxItemsComputed.desc%"
},
"json.schemaDownload.enable": {
"type": "boolean",
"default": true,
"description": "%json.enableSchemaDownload.desc%",
"tags": [
"usesOnlineServices"
]
}
}
}, },
"dependencies": { "configurationDefaults": {
"request-light": "^0.4.0", "[json]": {
"vscode-extension-telemetry": "0.1.1", "editor.quickSuggestions": {
"vscode-languageclient": "^7.0.0", "strings": true
"vscode-nls": "^5.0.0" },
"editor.suggest.insertMode": "replace"
},
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
}
}, },
"devDependencies": { "jsonValidation": [
"@types/node": "^12.19.9" {
} "fileMatch": "*.schema.json",
"url": "http://json-schema.org/draft-07/schema#"
}
]
},
"dependencies": {
"request-light": "^0.4.0",
"vscode-extension-telemetry": "0.1.1",
"vscode-languageclient": "^7.0.0",
"vscode-nls": "^5.0.0"
},
"devDependencies": {
"@types/node": "^12.19.9"
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "JSON Language Basics", "displayName": "JSON Language Basics",
"description": "Provides syntax highlighting & bracket matching in JSON files." "description": "Provides syntax highlighting & bracket matching in JSON files."
} }
+55 -41
View File
@@ -1,42 +1,56 @@
{ {
"name": "less", "name": "less",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-less grammars/less.cson ./syntaxes/less.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js atom/language-less grammars/less.cson ./syntaxes/less.tmLanguage.json"
"languages": [{ },
"id": "less", "contributes": {
"aliases": ["Less", "less"], "languages": [
"extensions": [".less"], {
"mimetypes": ["text/x-less", "text/less"], "id": "less",
"configuration": "./language-configuration.json" "aliases": [
}], "Less",
"grammars": [{ "less"
"language": "less", ],
"scopeName": "source.css.less", "extensions": [
"path": "./syntaxes/less.tmLanguage.json" ".less"
}], ],
"problemMatchers": [ "mimetypes": [
{ "text/x-less",
"name": "lessc", "text/less"
"label": "Lessc compiler", ],
"owner": "lessc", "configuration": "./language-configuration.json"
"source": "less", }
"fileLocation": "absolute", ],
"pattern": { "grammars": [
"regexp": "(.*)\\sin\\s(.*)\\son line\\s(\\d+),\\scolumn\\s(\\d+)", {
"message": 1, "language": "less",
"file": 2, "scopeName": "source.css.less",
"line": 3, "path": "./syntaxes/less.tmLanguage.json"
"column": 4 }
} ],
} "problemMatchers": [
] {
} "name": "lessc",
} "label": "Lessc compiler",
"owner": "lessc",
"source": "less",
"fileLocation": "absolute",
"pattern": {
"regexp": "(.*)\\sin\\s(.*)\\son line\\s(\\d+),\\scolumn\\s(\\d+)",
"message": 1,
"file": 2,
"line": 3,
"column": 4
}
}
]
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Less Language Basics", "displayName": "Less Language Basics",
"description": "Provides syntax highlighting, bracket matching and folding in Less files." "description": "Provides syntax highlighting, bracket matching and folding in Less files."
} }
+34 -34
View File
@@ -1,35 +1,35 @@
{ {
"name": "log", "name": "log",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js emilast/vscode-logfile-highlighter syntaxes/log.tmLanguage ./syntaxes/log.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js emilast/vscode-logfile-highlighter syntaxes/log.tmLanguage ./syntaxes/log.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "log", "id": "log",
"extensions": [ "extensions": [
".log", ".log",
"*.log.?" "*.log.?"
], ],
"aliases": [ "aliases": [
"Log" "Log"
] ]
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "log", "language": "log",
"scopeName": "text.log", "scopeName": "text.log",
"path": "./syntaxes/log.tmLanguage.json" "path": "./syntaxes/log.tmLanguage.json"
} }
] ]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Log", "displayName": "Log",
"description": "Provides syntax highlighting for files with .log extension." "description": "Provides syntax highlighting for files with .log extension."
} }
+35 -24
View File
@@ -1,25 +1,36 @@
{ {
"name": "lua", "name": "lua",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js textmate/lua.tmbundle Syntaxes/Lua.plist ./syntaxes/lua.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js textmate/lua.tmbundle Syntaxes/Lua.plist ./syntaxes/lua.tmLanguage.json"
"languages": [{ },
"id": "lua", "contributes": {
"extensions": [ ".lua" ], "languages": [
"aliases": [ "Lua", "lua" ], {
"configuration": "./language-configuration.json" "id": "lua",
}], "extensions": [
"grammars": [{ ".lua"
"language": "lua", ],
"scopeName": "source.lua", "aliases": [
"path": "./syntaxes/lua.tmLanguage.json" "Lua",
}] "lua"
} ],
} "configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lua",
"scopeName": "source.lua",
"path": "./syntaxes/lua.tmLanguage.json"
}
]
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Lua Language Basics", "displayName": "Lua Language Basics",
"description": "Provides syntax highlighting and bracket matching in Lua files." "description": "Provides syntax highlighting and bracket matching in Lua files."
} }
+50 -50
View File
@@ -1,51 +1,51 @@
{ {
"name": "make", "name": "make",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js fadeevab/make.tmbundle Syntaxes/Makefile.plist ./syntaxes/make.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js fadeevab/make.tmbundle Syntaxes/Makefile.plist ./syntaxes/make.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "makefile", "id": "makefile",
"aliases": [ "aliases": [
"Makefile", "Makefile",
"makefile" "makefile"
], ],
"extensions": [ "extensions": [
".mk" ".mk"
], ],
"filenames": [ "filenames": [
"Makefile", "Makefile",
"makefile", "makefile",
"GNUmakefile", "GNUmakefile",
"OCamlMakefile" "OCamlMakefile"
], ],
"firstLine": "^#!\\s*/usr/bin/make", "firstLine": "^#!\\s*/usr/bin/make",
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "makefile", "language": "makefile",
"scopeName": "source.makefile", "scopeName": "source.makefile",
"path": "./syntaxes/make.tmLanguage.json", "path": "./syntaxes/make.tmLanguage.json",
"tokenTypes": { "tokenTypes": {
"string.interpolated": "other" "string.interpolated": "other"
} }
} }
], ],
"configurationDefaults": { "configurationDefaults": {
"[makefile]": { "[makefile]": {
"editor.insertSpaces": false "editor.insertSpaces": false
} }
} }
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Make Language Basics", "displayName": "Make Language Basics",
"description": "Provides syntax highlighting and bracket matching in Make files." "description": "Provides syntax highlighting and bracket matching in Make files."
} }
+93 -93
View File
@@ -1,95 +1,95 @@
{ {
"name": "markdown", "name": "markdown",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "^1.20.0" "vscode": "^1.20.0"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "markdown", "id": "markdown",
"aliases": [ "aliases": [
"Markdown", "Markdown",
"markdown" "markdown"
], ],
"extensions": [ "extensions": [
".md", ".md",
".mkd", ".mkd",
".mdwn", ".mdwn",
".mdown", ".mdown",
".markdown", ".markdown",
".markdn", ".markdn",
".mdtxt", ".mdtxt",
".mdtext", ".mdtext",
".workbook" ".workbook"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "markdown", "language": "markdown",
"scopeName": "text.html.markdown", "scopeName": "text.html.markdown",
"path": "./syntaxes/markdown.tmLanguage.json", "path": "./syntaxes/markdown.tmLanguage.json",
"embeddedLanguages": { "embeddedLanguages": {
"meta.embedded.block.html": "html", "meta.embedded.block.html": "html",
"source.js": "javascript", "source.js": "javascript",
"source.css": "css", "source.css": "css",
"meta.embedded.block.frontmatter": "yaml", "meta.embedded.block.frontmatter": "yaml",
"meta.embedded.block.css": "css", "meta.embedded.block.css": "css",
"meta.embedded.block.ini": "ini", "meta.embedded.block.ini": "ini",
"meta.embedded.block.java": "java", "meta.embedded.block.java": "java",
"meta.embedded.block.lua": "lua", "meta.embedded.block.lua": "lua",
"meta.embedded.block.makefile": "makefile", "meta.embedded.block.makefile": "makefile",
"meta.embedded.block.perl": "perl", "meta.embedded.block.perl": "perl",
"meta.embedded.block.r": "r", "meta.embedded.block.r": "r",
"meta.embedded.block.ruby": "ruby", "meta.embedded.block.ruby": "ruby",
"meta.embedded.block.php": "php", "meta.embedded.block.php": "php",
"meta.embedded.block.sql": "sql", "meta.embedded.block.sql": "sql",
"meta.embedded.block.vs_net": "vs_net", "meta.embedded.block.vs_net": "vs_net",
"meta.embedded.block.xml": "xml", "meta.embedded.block.xml": "xml",
"meta.embedded.block.xsl": "xsl", "meta.embedded.block.xsl": "xsl",
"meta.embedded.block.yaml": "yaml", "meta.embedded.block.yaml": "yaml",
"meta.embedded.block.dosbatch": "dosbatch", "meta.embedded.block.dosbatch": "dosbatch",
"meta.embedded.block.clojure": "clojure", "meta.embedded.block.clojure": "clojure",
"meta.embedded.block.coffee": "coffee", "meta.embedded.block.coffee": "coffee",
"meta.embedded.block.c": "c", "meta.embedded.block.c": "c",
"meta.embedded.block.cpp": "cpp", "meta.embedded.block.cpp": "cpp",
"meta.embedded.block.diff": "diff", "meta.embedded.block.diff": "diff",
"meta.embedded.block.dockerfile": "dockerfile", "meta.embedded.block.dockerfile": "dockerfile",
"meta.embedded.block.go": "go", "meta.embedded.block.go": "go",
"meta.embedded.block.groovy": "groovy", "meta.embedded.block.groovy": "groovy",
"meta.embedded.block.pug": "jade", "meta.embedded.block.pug": "jade",
"meta.embedded.block.javascript": "javascript", "meta.embedded.block.javascript": "javascript",
"meta.embedded.block.json": "json", "meta.embedded.block.json": "json",
"meta.embedded.block.less": "less", "meta.embedded.block.less": "less",
"meta.embedded.block.objc": "objc", "meta.embedded.block.objc": "objc",
"meta.embedded.block.scss": "scss", "meta.embedded.block.scss": "scss",
"meta.embedded.block.perl6": "perl6", "meta.embedded.block.perl6": "perl6",
"meta.embedded.block.powershell": "powershell", "meta.embedded.block.powershell": "powershell",
"meta.embedded.block.python": "python", "meta.embedded.block.python": "python",
"meta.embedded.block.rust": "rust", "meta.embedded.block.rust": "rust",
"meta.embedded.block.scala": "scala", "meta.embedded.block.scala": "scala",
"meta.embedded.block.shellscript": "shellscript", "meta.embedded.block.shellscript": "shellscript",
"meta.embedded.block.typescript": "typescript", "meta.embedded.block.typescript": "typescript",
"meta.embedded.block.typescriptreact": "typescriptreact", "meta.embedded.block.typescriptreact": "typescriptreact",
"meta.embedded.block.csharp": "csharp", "meta.embedded.block.csharp": "csharp",
"meta.embedded.block.fsharp": "fsharp" "meta.embedded.block.fsharp": "fsharp"
} }
} }
], ],
"snippets": [ "snippets": [
{ {
"language": "markdown", "language": "markdown",
"path": "./snippets/markdown.code-snippets" "path": "./snippets/markdown.code-snippets"
} }
] ]
}, },
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js microsoft/vscode-markdown-tm-grammar syntaxes/markdown.tmLanguage ./syntaxes/markdown.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js microsoft/vscode-markdown-tm-grammar syntaxes/markdown.tmLanguage ./syntaxes/markdown.tmLanguage.json"
} }
} }
+338 -338
View File
@@ -1,340 +1,340 @@
{ {
"name": "markdown-language-features", "name": "markdown-language-features",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"icon": "icon.png", "icon": "icon.png",
"publisher": "vscode", "publisher": "vscode",
"enableProposedApi": true, "enableProposedApi": true,
"license": "MIT", "license": "MIT",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": { "engines": {
"vscode": "^1.20.0" "vscode": "^1.20.0"
}, },
"main": "./out/extension", "main": "./out/extension",
"browser": "./dist/browser/extension", "browser": "./dist/browser/extension",
"categories": [ "categories": [
"Programming Languages" "Programming Languages"
], ],
"activationEvents": [ "activationEvents": [
"onLanguage:markdown", "onLanguage:markdown",
"onCommand:markdown.preview.toggleLock", "onCommand:markdown.preview.toggleLock",
"onCommand:markdown.preview.refresh", "onCommand:markdown.preview.refresh",
"onCommand:markdown.showPreview", "onCommand:markdown.showPreview",
"onCommand:markdown.showPreviewToSide", "onCommand:markdown.showPreviewToSide",
"onCommand:markdown.showLockedPreviewToSide", "onCommand:markdown.showLockedPreviewToSide",
"onCommand:markdown.showSource", "onCommand:markdown.showSource",
"onCommand:markdown.showPreviewSecuritySelector", "onCommand:markdown.showPreviewSecuritySelector",
"onCommand:markdown.api.render", "onCommand:markdown.api.render",
"onWebviewPanel:markdown.preview", "onWebviewPanel:markdown.preview",
"onCustomEditor:vscode.markdown.preview.editor" "onCustomEditor:vscode.markdown.preview.editor"
], ],
"contributes": { "contributes": {
"commands": [ "commands": [
{ {
"command": "markdown.showPreview", "command": "markdown.showPreview",
"title": "%markdown.preview.title%", "title": "%markdown.preview.title%",
"category": "Markdown", "category": "Markdown",
"icon": { "icon": {
"light": "./media/preview-light.svg", "light": "./media/preview-light.svg",
"dark": "./media/preview-dark.svg" "dark": "./media/preview-dark.svg"
} }
}, },
{ {
"command": "markdown.showPreviewToSide", "command": "markdown.showPreviewToSide",
"title": "%markdown.previewSide.title%", "title": "%markdown.previewSide.title%",
"category": "Markdown", "category": "Markdown",
"icon": "$(open-preview)" "icon": "$(open-preview)"
}, },
{ {
"command": "markdown.showLockedPreviewToSide", "command": "markdown.showLockedPreviewToSide",
"title": "%markdown.showLockedPreviewToSide.title%", "title": "%markdown.showLockedPreviewToSide.title%",
"category": "Markdown", "category": "Markdown",
"icon": "$(open-preview)" "icon": "$(open-preview)"
}, },
{ {
"command": "markdown.showSource", "command": "markdown.showSource",
"title": "%markdown.showSource.title%", "title": "%markdown.showSource.title%",
"category": "Markdown", "category": "Markdown",
"icon": "$(go-to-file)" "icon": "$(go-to-file)"
}, },
{ {
"command": "markdown.showPreviewSecuritySelector", "command": "markdown.showPreviewSecuritySelector",
"title": "%markdown.showPreviewSecuritySelector.title%", "title": "%markdown.showPreviewSecuritySelector.title%",
"category": "Markdown" "category": "Markdown"
}, },
{ {
"command": "markdown.preview.refresh", "command": "markdown.preview.refresh",
"title": "%markdown.preview.refresh.title%", "title": "%markdown.preview.refresh.title%",
"category": "Markdown" "category": "Markdown"
}, },
{ {
"command": "markdown.preview.toggleLock", "command": "markdown.preview.toggleLock",
"title": "%markdown.preview.toggleLock.title%", "title": "%markdown.preview.toggleLock.title%",
"category": "Markdown" "category": "Markdown"
} }
], ],
"menus": { "menus": {
"editor/title": [ "editor/title": [
{ {
"command": "markdown.showPreviewToSide", "command": "markdown.showPreviewToSide",
"when": "editorLangId == markdown && !notebookEditorFocused", "when": "editorLangId == markdown && !notebookEditorFocused",
"alt": "markdown.showPreview", "alt": "markdown.showPreview",
"group": "navigation" "group": "navigation"
}, },
{ {
"command": "markdown.showSource", "command": "markdown.showSource",
"when": "markdownPreviewFocus", "when": "markdownPreviewFocus",
"group": "navigation" "group": "navigation"
}, },
{ {
"command": "markdown.preview.refresh", "command": "markdown.preview.refresh",
"when": "markdownPreviewFocus", "when": "markdownPreviewFocus",
"group": "1_markdown" "group": "1_markdown"
}, },
{ {
"command": "markdown.preview.toggleLock", "command": "markdown.preview.toggleLock",
"when": "markdownPreviewFocus", "when": "markdownPreviewFocus",
"group": "1_markdown" "group": "1_markdown"
}, },
{ {
"command": "markdown.showPreviewSecuritySelector", "command": "markdown.showPreviewSecuritySelector",
"when": "markdownPreviewFocus", "when": "markdownPreviewFocus",
"group": "1_markdown" "group": "1_markdown"
} }
], ],
"explorer/context": [ "explorer/context": [
{ {
"command": "markdown.showPreview", "command": "markdown.showPreview",
"when": "resourceLangId == markdown", "when": "resourceLangId == markdown",
"group": "navigation" "group": "navigation"
} }
], ],
"editor/title/context": [ "editor/title/context": [
{ {
"command": "markdown.showPreview", "command": "markdown.showPreview",
"when": "resourceLangId == markdown", "when": "resourceLangId == markdown",
"group": "1_open" "group": "1_open"
} }
], ],
"commandPalette": [ "commandPalette": [
{ {
"command": "markdown.showPreview", "command": "markdown.showPreview",
"when": "editorLangId == markdown && !notebookEditorFocused", "when": "editorLangId == markdown && !notebookEditorFocused",
"group": "navigation" "group": "navigation"
}, },
{ {
"command": "markdown.showPreviewToSide", "command": "markdown.showPreviewToSide",
"when": "editorLangId == markdown && !notebookEditorFocused", "when": "editorLangId == markdown && !notebookEditorFocused",
"group": "navigation" "group": "navigation"
}, },
{ {
"command": "markdown.showLockedPreviewToSide", "command": "markdown.showLockedPreviewToSide",
"when": "editorLangId == markdown && !notebookEditorFocused", "when": "editorLangId == markdown && !notebookEditorFocused",
"group": "navigation" "group": "navigation"
}, },
{ {
"command": "markdown.showSource", "command": "markdown.showSource",
"when": "markdownPreviewFocus", "when": "markdownPreviewFocus",
"group": "navigation" "group": "navigation"
}, },
{ {
"command": "markdown.showPreviewSecuritySelector", "command": "markdown.showPreviewSecuritySelector",
"when": "editorLangId == markdown && !notebookEditorFocused" "when": "editorLangId == markdown && !notebookEditorFocused"
}, },
{ {
"command": "markdown.showPreviewSecuritySelector", "command": "markdown.showPreviewSecuritySelector",
"when": "markdownPreviewFocus" "when": "markdownPreviewFocus"
}, },
{ {
"command": "markdown.preview.toggleLock", "command": "markdown.preview.toggleLock",
"when": "markdownPreviewFocus" "when": "markdownPreviewFocus"
}, },
{ {
"command": "markdown.preview.refresh", "command": "markdown.preview.refresh",
"when": "editorLangId == markdown && !notebookEditorFocused" "when": "editorLangId == markdown && !notebookEditorFocused"
}, },
{ {
"command": "markdown.preview.refresh", "command": "markdown.preview.refresh",
"when": "markdownPreviewFocus" "when": "markdownPreviewFocus"
} }
] ]
}, },
"keybindings": [ "keybindings": [
{ {
"command": "markdown.showPreview", "command": "markdown.showPreview",
"key": "shift+ctrl+v", "key": "shift+ctrl+v",
"mac": "shift+cmd+v", "mac": "shift+cmd+v",
"when": "editorLangId == markdown && !notebookEditorFocused" "when": "editorLangId == markdown && !notebookEditorFocused"
}, },
{ {
"command": "markdown.showPreviewToSide", "command": "markdown.showPreviewToSide",
"key": "ctrl+k v", "key": "ctrl+k v",
"mac": "cmd+k v", "mac": "cmd+k v",
"when": "editorLangId == markdown && !notebookEditorFocused" "when": "editorLangId == markdown && !notebookEditorFocused"
} }
], ],
"configuration": { "configuration": {
"type": "object", "type": "object",
"title": "Markdown", "title": "Markdown",
"order": 20, "order": 20,
"properties": { "properties": {
"markdown.styles": { "markdown.styles": {
"type": "array", "type": "array",
"items": { "items": {
"type": "string" "type": "string"
}, },
"default": [], "default": [],
"description": "%markdown.styles.dec%", "description": "%markdown.styles.dec%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.breaks": { "markdown.preview.breaks": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "%markdown.preview.breaks.desc%", "description": "%markdown.preview.breaks.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.linkify": { "markdown.preview.linkify": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "%markdown.preview.linkify%", "description": "%markdown.preview.linkify%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.fontFamily": { "markdown.preview.fontFamily": {
"type": "string", "type": "string",
"default": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif", "default": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', system-ui, 'Ubuntu', 'Droid Sans', sans-serif",
"description": "%markdown.preview.fontFamily.desc%", "description": "%markdown.preview.fontFamily.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.fontSize": { "markdown.preview.fontSize": {
"type": "number", "type": "number",
"default": 14, "default": 14,
"description": "%markdown.preview.fontSize.desc%", "description": "%markdown.preview.fontSize.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.lineHeight": { "markdown.preview.lineHeight": {
"type": "number", "type": "number",
"default": 1.6, "default": 1.6,
"description": "%markdown.preview.lineHeight.desc%", "description": "%markdown.preview.lineHeight.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.scrollPreviewWithEditor": { "markdown.preview.scrollPreviewWithEditor": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "%markdown.preview.scrollPreviewWithEditor.desc%", "description": "%markdown.preview.scrollPreviewWithEditor.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.markEditorSelection": { "markdown.preview.markEditorSelection": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "%markdown.preview.markEditorSelection.desc%", "description": "%markdown.preview.markEditorSelection.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.scrollEditorWithPreview": { "markdown.preview.scrollEditorWithPreview": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "%markdown.preview.scrollEditorWithPreview.desc%", "description": "%markdown.preview.scrollEditorWithPreview.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.doubleClickToSwitchToEditor": { "markdown.preview.doubleClickToSwitchToEditor": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "%markdown.preview.doubleClickToSwitchToEditor.desc%", "description": "%markdown.preview.doubleClickToSwitchToEditor.desc%",
"scope": "resource" "scope": "resource"
}, },
"markdown.preview.openMarkdownLinks": { "markdown.preview.openMarkdownLinks": {
"type": "string", "type": "string",
"default": "inPreview", "default": "inPreview",
"description": "%configuration.markdown.preview.openMarkdownLinks.description%", "description": "%configuration.markdown.preview.openMarkdownLinks.description%",
"scope": "resource", "scope": "resource",
"enum": [ "enum": [
"inPreview", "inPreview",
"inEditor" "inEditor"
], ],
"enumDescriptions": [ "enumDescriptions": [
"%configuration.markdown.preview.openMarkdownLinks.inPreview%", "%configuration.markdown.preview.openMarkdownLinks.inPreview%",
"%configuration.markdown.preview.openMarkdownLinks.inEditor%" "%configuration.markdown.preview.openMarkdownLinks.inEditor%"
] ]
}, },
"markdown.links.openLocation": { "markdown.links.openLocation": {
"type": "string", "type": "string",
"default": "currentGroup", "default": "currentGroup",
"description": "%configuration.markdown.links.openLocation.description%", "description": "%configuration.markdown.links.openLocation.description%",
"scope": "resource", "scope": "resource",
"enum": [ "enum": [
"currentGroup", "currentGroup",
"beside" "beside"
], ],
"enumDescriptions": [ "enumDescriptions": [
"%configuration.markdown.links.openLocation.currentGroup%", "%configuration.markdown.links.openLocation.currentGroup%",
"%configuration.markdown.links.openLocation.beside%" "%configuration.markdown.links.openLocation.beside%"
] ]
}, },
"markdown.trace": { "markdown.trace": {
"type": "string", "type": "string",
"enum": [ "enum": [
"off", "off",
"verbose" "verbose"
], ],
"default": "off", "default": "off",
"description": "%markdown.trace.desc%", "description": "%markdown.trace.desc%",
"scope": "window" "scope": "window"
} }
} }
}, },
"configurationDefaults": { "configurationDefaults": {
"[markdown]": { "[markdown]": {
"editor.wordWrap": "on", "editor.wordWrap": "on",
"editor.quickSuggestions": false "editor.quickSuggestions": false
} }
}, },
"jsonValidation": [ "jsonValidation": [
{ {
"fileMatch": "package.json", "fileMatch": "package.json",
"url": "./schemas/package.schema.json" "url": "./schemas/package.schema.json"
} }
], ],
"markdown.previewStyles": [ "markdown.previewStyles": [
"./media/markdown.css", "./media/markdown.css",
"./media/highlight.css" "./media/highlight.css"
], ],
"markdown.previewScripts": [ "markdown.previewScripts": [
"./media/index.js" "./media/index.js"
], ],
"customEditors": [ "customEditors": [
{ {
"viewType": "vscode.markdown.preview.editor", "viewType": "vscode.markdown.preview.editor",
"displayName": "Markdown Preview (Experimental)", "displayName": "Markdown Preview (Experimental)",
"priority": "option", "priority": "option",
"selector": [ "selector": [
{ {
"filenamePattern": "*.md" "filenamePattern": "*.md"
} }
] ]
} }
] ]
}, },
"scripts": { "scripts": {
"compile": "gulp compile-extension:markdown-language-features && npm run build-preview", "compile": "gulp compile-extension:markdown-language-features && npm run build-preview",
"watch": "npm run build-preview && gulp watch-extension:markdown-language-features", "watch": "npm run build-preview && gulp watch-extension:markdown-language-features",
"vscode:prepublish": "npm run build-ext && npm run build-preview", "vscode:prepublish": "npm run build-ext && npm run build-preview",
"build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:markdown-language-features ./tsconfig.json", "build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:markdown-language-features ./tsconfig.json",
"build-preview": "webpack --mode production", "build-preview": "webpack --mode production",
"compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none", "compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
"watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose" "watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose"
}, },
"dependencies": { "dependencies": {
"highlight.js": "^10.4.1", "highlight.js": "^10.4.1",
"markdown-it": "^12.0.3", "markdown-it": "^12.0.3",
"markdown-it-front-matter": "^0.2.1", "markdown-it-front-matter": "^0.2.1",
"vscode-extension-telemetry": "0.1.1", "vscode-extension-telemetry": "0.1.1",
"vscode-nls": "^4.0.0" "vscode-nls": "^4.0.0"
}, },
"devDependencies": { "devDependencies": {
"@types/highlight.js": "10.1.0", "@types/highlight.js": "10.1.0",
"@types/lodash.throttle": "^4.1.3", "@types/lodash.throttle": "^4.1.3",
"@types/markdown-it": "0.0.2", "@types/markdown-it": "0.0.2",
"@types/node": "^12.19.9", "@types/node": "^12.19.9",
"lodash.throttle": "^4.1.1" "lodash.throttle": "^4.1.1"
} }
} }
@@ -1,58 +1,58 @@
{ {
"name": "microsoft-authentication", "name": "microsoft-authentication",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "0.0.1", "version": "0.0.1",
"engines": { "engines": {
"vscode": "^1.42.0" "vscode": "^1.42.0"
}, },
"categories": [ "categories": [
"Other" "Other"
], ],
"enableProposedApi": true, "enableProposedApi": true,
"activationEvents": [ "activationEvents": [
"onAuthenticationRequest:microsoft" "onAuthenticationRequest:microsoft"
], ],
"extensionKind": [ "extensionKind": [
"ui", "ui",
"workspace", "workspace",
"web" "web"
], ],
"contributes": { "contributes": {
"authentication": [ "authentication": [
{ {
"label": "Microsoft", "label": "Microsoft",
"id": "microsoft" "id": "microsoft"
} }
] ]
}, },
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"main": "./out/extension.js", "main": "./out/extension.js",
"browser": "./dist/browser/extension.js", "browser": "./dist/browser/extension.js",
"scripts": { "scripts": {
"vscode:prepublish": "npm run compile", "vscode:prepublish": "npm run compile",
"compile": "gulp compile-extension:microsoft-authentication", "compile": "gulp compile-extension:microsoft-authentication",
"compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none", "compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
"watch": "gulp watch-extension:microsoft-authentication", "watch": "gulp watch-extension:microsoft-authentication",
"watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose" "watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^12.19.9", "@types/node": "^12.19.9",
"@types/node-fetch": "^2.5.7", "@types/node-fetch": "^2.5.7",
"@types/randombytes": "^2.0.0", "@types/randombytes": "^2.0.0",
"@types/sha.js": "^2.4.0", "@types/sha.js": "^2.4.0",
"@types/uuid": "8.0.0" "@types/uuid": "8.0.0"
}, },
"dependencies": { "dependencies": {
"buffer": "^5.6.0", "buffer": "^5.6.0",
"node-fetch": "^2.6.0", "node-fetch": "^2.6.0",
"randombytes": "github:rmacfarlane/randombytes#b28d4ecee46262801ea09f15fa1f1513a05c5971", "randombytes": "github:rmacfarlane/randombytes#b28d4ecee46262801ea09f15fa1f1513a05c5971",
"sha.js": "2.4.11", "sha.js": "2.4.11",
"stream": "0.0.2", "stream": "0.0.2",
"uuid": "^8.2.0", "uuid": "^8.2.0",
"vscode-extension-telemetry": "0.1.1", "vscode-extension-telemetry": "0.1.1",
"vscode-nls": "^4.1.1" "vscode-nls": "^4.1.1"
} }
} }
+49 -49
View File
@@ -1,50 +1,50 @@
{ {
"name": "objective-c", "name": "objective-c",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ./build/update-grammars.js" "update-grammar": "node ./build/update-grammars.js"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "objective-c", "id": "objective-c",
"extensions": [ "extensions": [
".m" ".m"
], ],
"aliases": [ "aliases": [
"Objective-C" "Objective-C"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
}, },
{ {
"id": "objective-cpp", "id": "objective-cpp",
"extensions": [ "extensions": [
".mm" ".mm"
], ],
"aliases": [ "aliases": [
"Objective-C++" "Objective-C++"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "objective-c", "language": "objective-c",
"scopeName": "source.objc", "scopeName": "source.objc",
"path": "./syntaxes/objective-c.tmLanguage.json" "path": "./syntaxes/objective-c.tmLanguage.json"
}, },
{ {
"language": "objective-cpp", "language": "objective-cpp",
"scopeName": "source.objcpp", "scopeName": "source.objcpp",
"path": "./syntaxes/objective-c++.tmLanguage.json" "path": "./syntaxes/objective-c++.tmLanguage.json"
} }
] ]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Objective-C Language Basics", "displayName": "Objective-C Language Basics",
"description": "Provides syntax highlighting and bracket matching in Objective-C files." "description": "Provides syntax highlighting and bracket matching in Objective-C files."
} }
+61 -35
View File
@@ -1,36 +1,62 @@
{ {
"name": "perl", "name": "perl",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js textmate/perl.tmbundle Syntaxes/Perl.plist ./syntaxes/perl.tmLanguage.json Syntaxes/Perl%206.tmLanguage ./syntaxes/perl6.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js textmate/perl.tmbundle Syntaxes/Perl.plist ./syntaxes/perl.tmLanguage.json Syntaxes/Perl%206.tmLanguage ./syntaxes/perl6.tmLanguage.json"
"languages": [{ },
"id": "perl", "contributes": {
"aliases": ["Perl", "perl"], "languages": [
"extensions": [".pl", ".pm", ".pod", ".t", ".PL", ".psgi"], {
"firstLine": "^#!.*\\bperl\\b", "id": "perl",
"configuration": "./perl.language-configuration.json" "aliases": [
}, { "Perl",
"id": "perl6", "perl"
"aliases": ["Perl 6", "perl6"], ],
"extensions": [".p6", ".pl6", ".pm6", ".nqp"], "extensions": [
"firstLine": "(^#!.*\\bperl6\\b)|use\\s+v6", ".pl",
"configuration": "./perl6.language-configuration.json" ".pm",
}], ".pod",
"grammars": [{ ".t",
"language": "perl", ".PL",
"scopeName": "source.perl", ".psgi"
"path": "./syntaxes/perl.tmLanguage.json" ],
}, { "firstLine": "^#!.*\\bperl\\b",
"language": "perl6", "configuration": "./perl.language-configuration.json"
"scopeName": "source.perl.6", },
"path": "./syntaxes/perl6.tmLanguage.json" {
}] "id": "perl6",
} "aliases": [
} "Perl 6",
"perl6"
],
"extensions": [
".p6",
".pl6",
".pm6",
".nqp"
],
"firstLine": "(^#!.*\\bperl6\\b)|use\\s+v6",
"configuration": "./perl6.language-configuration.json"
}
],
"grammars": [
{
"language": "perl",
"scopeName": "source.perl",
"path": "./syntaxes/perl.tmLanguage.json"
},
{
"language": "perl6",
"scopeName": "source.perl.6",
"path": "./syntaxes/perl6.tmLanguage.json"
}
]
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Perl Language Basics", "displayName": "Perl Language Basics",
"description": "Provides syntax highlighting and bracket matching in Perl files." "description": "Provides syntax highlighting and bracket matching in Perl files."
} }
+85 -85
View File
@@ -1,87 +1,87 @@
{ {
"name": "php-language-features", "name": "php-language-features",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"icon": "icons/logo.png", "icon": "icons/logo.png",
"engines": { "engines": {
"vscode": "0.10.x" "vscode": "0.10.x"
}, },
"activationEvents": [ "activationEvents": [
"onLanguage:php" "onLanguage:php"
], ],
"main": "./out/phpMain", "main": "./out/phpMain",
"categories": [ "categories": [
"Programming Languages" "Programming Languages"
], ],
"contributes": { "contributes": {
"configuration": { "configuration": {
"title": "%configuration.title%", "title": "%configuration.title%",
"type": "object", "type": "object",
"order": 20, "order": 20,
"properties": { "properties": {
"php.suggest.basic": { "php.suggest.basic": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "%configuration.suggest.basic%" "description": "%configuration.suggest.basic%"
}, },
"php.validate.enable": { "php.validate.enable": {
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "%configuration.validate.enable%" "description": "%configuration.validate.enable%"
}, },
"php.validate.executablePath": { "php.validate.executablePath": {
"type": [ "type": [
"string", "string",
"null" "null"
], ],
"default": null, "default": null,
"description": "%configuration.validate.executablePath%", "description": "%configuration.validate.executablePath%",
"scope": "machine-overridable" "scope": "machine-overridable"
}, },
"php.validate.run": { "php.validate.run": {
"type": "string", "type": "string",
"enum": [ "enum": [
"onSave", "onSave",
"onType" "onType"
], ],
"default": "onSave", "default": "onSave",
"description": "%configuration.validate.run%" "description": "%configuration.validate.run%"
} }
} }
}, },
"jsonValidation": [ "jsonValidation": [
{ {
"fileMatch": "composer.json", "fileMatch": "composer.json",
"url": "https://getcomposer.org/schema.json" "url": "https://getcomposer.org/schema.json"
} }
], ],
"commands": [ "commands": [
{ {
"title": "%command.untrustValidationExecutable%", "title": "%command.untrustValidationExecutable%",
"category": "%commands.categroy.php%", "category": "%commands.categroy.php%",
"command": "php.untrustValidationExecutable" "command": "php.untrustValidationExecutable"
} }
], ],
"menus": { "menus": {
"commandPalette": [ "commandPalette": [
{ {
"command": "php.untrustValidationExecutable", "command": "php.untrustValidationExecutable",
"when": "php.untrustValidationExecutableContext" "when": "php.untrustValidationExecutableContext"
} }
] ]
} }
}, },
"scripts": { "scripts": {
"compile": "npx gulp compile-extension:php-language-features", "compile": "npx gulp compile-extension:php-language-features",
"watch": "npx gulp watch-extension:php-language-features" "watch": "npx gulp watch-extension:php-language-features"
}, },
"dependencies": { "dependencies": {
"vscode-nls": "^4.0.0" "vscode-nls": "^4.0.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^12.19.9" "@types/node": "^12.19.9"
} }
} }
@@ -8,4 +8,4 @@
"command.untrustValidationExecutable": "Disallow PHP validation executable (defined as workspace setting)", "command.untrustValidationExecutable": "Disallow PHP validation executable (defined as workspace setting)",
"displayName": "PHP Language Features", "displayName": "PHP Language Features",
"description": "Provides rich language support for PHP files." "description": "Provides rich language support for PHP files."
} }
+62 -62
View File
@@ -1,64 +1,64 @@
{ {
"name": "php", "name": "php",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "0.10.x" "vscode": "0.10.x"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "php", "id": "php",
"extensions": [ "extensions": [
".php", ".php",
".php4", ".php4",
".php5", ".php5",
".phtml", ".phtml",
".ctp" ".ctp"
], ],
"aliases": [ "aliases": [
"PHP", "PHP",
"php" "php"
], ],
"firstLine": "^#!\\s*/.*\\bphp\\b", "firstLine": "^#!\\s*/.*\\bphp\\b",
"mimetypes": [ "mimetypes": [
"application/x-php" "application/x-php"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "php", "language": "php",
"scopeName": "source.php", "scopeName": "source.php",
"path": "./syntaxes/php.tmLanguage.json" "path": "./syntaxes/php.tmLanguage.json"
}, },
{ {
"language": "php", "language": "php",
"scopeName": "text.html.php", "scopeName": "text.html.php",
"path": "./syntaxes/html.tmLanguage.json", "path": "./syntaxes/html.tmLanguage.json",
"embeddedLanguages": { "embeddedLanguages": {
"text.html": "html", "text.html": "html",
"source.php": "php", "source.php": "php",
"source.sql": "sql", "source.sql": "sql",
"text.xml": "xml", "text.xml": "xml",
"source.js": "javascript", "source.js": "javascript",
"source.json": "json", "source.json": "json",
"source.css": "css" "source.css": "css"
} }
} }
], ],
"snippets": [ "snippets": [
{ {
"language": "php", "language": "php",
"path": "./snippets/php.code-snippets" "path": "./snippets/php.code-snippets"
} }
] ]
}, },
"scripts": { "scripts": {
"update-grammar": "node ./build/update-grammar.js" "update-grammar": "node ./build/update-grammar.js"
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "PHP Language Basics", "displayName": "PHP Language Basics",
"description": "Provides syntax highlighting and bracket matching for PHP files." "description": "Provides syntax highlighting and bracket matching for PHP files."
} }
+47 -28
View File
@@ -1,30 +1,49 @@
{ {
"name": "powershell", "name": "powershell",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"languages": [{ },
"id": "powershell", "contributes": {
"extensions": [ ".ps1", ".psm1", ".psd1", ".pssc", ".psrc" ], "languages": [
"aliases": [ "PowerShell", "powershell", "ps", "ps1" ], {
"firstLine": "^#!\\s*/.*\\bpwsh\\b", "id": "powershell",
"configuration": "./language-configuration.json" "extensions": [
}], ".ps1",
"grammars": [{ ".psm1",
"language": "powershell", ".psd1",
"scopeName": "source.powershell", ".pssc",
"path": "./syntaxes/powershell.tmLanguage.json" ".psrc"
}], ],
"snippets": [{ "aliases": [
"language": "powershell", "PowerShell",
"path": "./snippets/powershell.code-snippets" "powershell",
}] "ps",
}, "ps1"
"scripts": { ],
"update-grammar": "node ../../build/npm/update-grammar.js PowerShell/EditorSyntax PowerShellSyntax.tmLanguage ./syntaxes/powershell.tmLanguage.json" "firstLine": "^#!\\s*/.*\\bpwsh\\b",
} "configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "powershell",
"scopeName": "source.powershell",
"path": "./syntaxes/powershell.tmLanguage.json"
}
],
"snippets": [
{
"language": "powershell",
"path": "./snippets/powershell.code-snippets"
}
]
},
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js PowerShell/EditorSyntax PowerShellSyntax.tmLanguage ./syntaxes/powershell.tmLanguage.json"
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Powershell Language Basics", "displayName": "Powershell Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in Powershell files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in Powershell files."
} }
+36 -23
View File
@@ -1,25 +1,38 @@
{ {
"name": "pug", "name": "pug",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js davidrios/pug-tmbundle Syntaxes/Pug.JSON-tmLanguage ./syntaxes/pug.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js davidrios/pug-tmbundle Syntaxes/Pug.JSON-tmLanguage ./syntaxes/pug.tmLanguage.json"
"languages": [{ },
"id": "jade", "contributes": {
"extensions": [ ".pug", ".jade" ], "languages": [
"aliases": [ "Pug", "Jade", "jade" ], {
"configuration": "./language-configuration.json" "id": "jade",
}], "extensions": [
"grammars": [{ ".pug",
"language": "jade", ".jade"
"scopeName": "text.pug", ],
"path": "./syntaxes/pug.tmLanguage.json" "aliases": [
}] "Pug",
} "Jade",
"jade"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jade",
"scopeName": "text.pug",
"path": "./syntaxes/pug.tmLanguage.json"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Pug Language Basics", "displayName": "Pug Language Basics",
"description": "Provides syntax highlighting and bracket matching in Pug files." "description": "Provides syntax highlighting and bracket matching in Pug files."
} }
+56 -29
View File
@@ -1,31 +1,58 @@
{ {
"name": "python", "name": "python",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"extensionKind": [ "ui", "workspace", "web" ], "vscode": "*"
"contributes": { },
"languages": [{ "extensionKind": [
"id": "python", "ui",
"extensions": [ ".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi", ".pyi", ".ipy"], "workspace",
"aliases": [ "Python", "py" ], "web"
"filenames": [ "Snakefile", "SConstruct", "SConscript" ], ],
"firstLine": "^#!\\s*/?.*\\bpython[0-9.-]*\\b", "contributes": {
"configuration": "./language-configuration.json" "languages": [
}], {
"grammars": [{ "id": "python",
"language": "python", "extensions": [
"scopeName": "source.python", ".py",
"path": "./syntaxes/MagicPython.tmLanguage.json" ".rpy",
},{ ".pyw",
"scopeName": "source.regexp.python", ".cpy",
"path": "./syntaxes/MagicRegExp.tmLanguage.json" ".gyp",
}] ".gypi",
}, ".pyi",
"scripts": { ".ipy"
"update-grammar": "node ../../build/npm/update-grammar.js MagicStack/MagicPython grammars/MagicPython.tmLanguage ./syntaxes/MagicPython.tmLanguage.json grammars/MagicRegExp.tmLanguage ./syntaxes/MagicRegExp.tmLanguage.json" ],
} "aliases": [
"Python",
"py"
],
"filenames": [
"Snakefile",
"SConstruct",
"SConscript"
],
"firstLine": "^#!\\s*/?.*\\bpython[0-9.-]*\\b",
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "python",
"scopeName": "source.python",
"path": "./syntaxes/MagicPython.tmLanguage.json"
},
{
"scopeName": "source.regexp.python",
"path": "./syntaxes/MagicRegExp.tmLanguage.json"
}
]
},
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js MagicStack/MagicPython grammars/MagicPython.tmLanguage ./syntaxes/MagicPython.tmLanguage.json grammars/MagicRegExp.tmLanguage ./syntaxes/MagicRegExp.tmLanguage.json"
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Python Language Basics", "displayName": "Python Language Basics",
"description": "Provides syntax highlighting, bracket matching and folding in Python files." "description": "Provides syntax highlighting, bracket matching and folding in Python files."
} }
+37 -23
View File
@@ -1,25 +1,39 @@
{ {
"name": "r", "name": "r",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js Ikuyadeu/vscode-R syntax/r.json ./syntaxes/r.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js Ikuyadeu/vscode-R syntax/r.json ./syntaxes/r.tmLanguage.json"
"languages": [{ },
"id": "r", "contributes": {
"extensions": [ ".r", ".rhistory", ".rprofile", ".rt" ], "languages": [
"aliases": [ "R", "r" ], {
"configuration": "./language-configuration.json" "id": "r",
}], "extensions": [
"grammars": [{ ".r",
"language": "r", ".rhistory",
"scopeName": "source.r", ".rprofile",
"path": "./syntaxes/r.tmLanguage.json" ".rt"
}] ],
} "aliases": [
"R",
"r"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "r",
"scopeName": "source.r",
"path": "./syntaxes/r.tmLanguage.json"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "R Language Basics", "displayName": "R Language Basics",
"description": "Provides syntax highlighting and bracket matching in R files." "description": "Provides syntax highlighting and bracket matching in R files."
} }
+30 -19
View File
@@ -1,7 +1,7 @@
{ {
"name": "razor", "name": "razor",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
@@ -11,23 +11,34 @@
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js demyte/language-cshtml grammars/cshtml.json ./syntaxes/cshtml.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js demyte/language-cshtml grammars/cshtml.json ./syntaxes/cshtml.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [{ "languages": [
"id": "razor", {
"extensions": [ ".cshtml"], "id": "razor",
"aliases": [ "Razor", "razor" ], "extensions": [
"mimetypes": ["text/x-cshtml"], ".cshtml"
"configuration": "./language-configuration.json" ],
}], "aliases": [
"grammars": [{ "Razor",
"language": "razor", "razor"
"scopeName": "text.html.cshtml", ],
"path": "./syntaxes/cshtml.tmLanguage.json", "mimetypes": [
"embeddedLanguages": { "text/x-cshtml"
"section.embedded.source.cshtml": "csharp", ],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "razor",
"scopeName": "text.html.cshtml",
"path": "./syntaxes/cshtml.tmLanguage.json",
"embeddedLanguages": {
"section.embedded.source.cshtml": "csharp",
"source.css": "css", "source.css": "css",
"source.js": "javascript" "source.js": "javascript"
} }
}] }
]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Razor Language Basics", "displayName": "Razor Language Basics",
"description": "Provides syntax highlighting, bracket matching and folding in Razor files." "description": "Provides syntax highlighting, bracket matching and folding in Razor files."
} }
+68 -25
View File
@@ -1,27 +1,70 @@
{ {
"name": "ruby", "name": "ruby",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js textmate/ruby.tmbundle Syntaxes/Ruby.plist ./syntaxes/ruby.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js textmate/ruby.tmbundle Syntaxes/Ruby.plist ./syntaxes/ruby.tmLanguage.json"
"languages": [{ },
"id": "ruby", "contributes": {
"extensions": [ ".rb", ".rbx", ".rjs", ".gemspec", ".rake", ".ru", ".erb", ".podspec", ".rbi" ], "languages": [
"filenames": [ "rakefile", "gemfile", "guardfile", "podfile", "capfile", "cheffile", "hobofile", "vagrantfile", "appraisals", "rantfile", "berksfile", "berksfile.lock", "thorfile", "puppetfile", "dangerfile", "brewfile", "fastfile", "appfile", "deliverfile", "matchfile", "scanfile", "snapfile", "gymfile" ], {
"aliases": [ "Ruby", "rb" ], "id": "ruby",
"firstLine": "^#!\\s*/.*\\bruby\\b", "extensions": [
"configuration": "./language-configuration.json" ".rb",
}], ".rbx",
"grammars": [{ ".rjs",
"language": "ruby", ".gemspec",
"scopeName": "source.ruby", ".rake",
"path": "./syntaxes/ruby.tmLanguage.json" ".ru",
}] ".erb",
} ".podspec",
".rbi"
],
"filenames": [
"rakefile",
"gemfile",
"guardfile",
"podfile",
"capfile",
"cheffile",
"hobofile",
"vagrantfile",
"appraisals",
"rantfile",
"berksfile",
"berksfile.lock",
"thorfile",
"puppetfile",
"dangerfile",
"brewfile",
"fastfile",
"appfile",
"deliverfile",
"matchfile",
"scanfile",
"snapfile",
"gymfile"
],
"aliases": [
"Ruby",
"rb"
],
"firstLine": "^#!\\s*/.*\\bruby\\b",
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ruby",
"scopeName": "source.ruby",
"path": "./syntaxes/ruby.tmLanguage.json"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Ruby Language Basics", "displayName": "Ruby Language Basics",
"description": "Provides syntax highlighting and bracket matching in Ruby files." "description": "Provides syntax highlighting and bracket matching in Ruby files."
} }
+34 -34
View File
@@ -1,36 +1,36 @@
{ {
"name": "rust", "name": "rust",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js dustypomerleau/rust-syntax syntaxes/rust.tmLanguage.json ./syntaxes/rust.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js dustypomerleau/rust-syntax syntaxes/rust.tmLanguage.json ./syntaxes/rust.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "rust", "id": "rust",
"extensions": [ "extensions": [
".rs" ".rs"
], ],
"aliases": [ "aliases": [
"Rust", "Rust",
"rust" "rust"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "rust", "language": "rust",
"path": "./syntaxes/rust.tmLanguage.json", "path": "./syntaxes/rust.tmLanguage.json",
"scopeName": "source.rust" "scopeName": "source.rust"
} }
] ]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Rust Language Basics", "displayName": "Rust Language Basics",
"description": "Provides syntax highlighting and bracket matching in Rust files." "description": "Provides syntax highlighting and bracket matching in Rust files."
} }
+80 -62
View File
@@ -1,64 +1,82 @@
{ {
"name": "scss", "name": "scss",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-sass grammars/scss.cson ./syntaxes/scss.tmLanguage.json grammars/sassdoc.cson ./syntaxes/sassdoc.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js atom/language-sass grammars/scss.cson ./syntaxes/scss.tmLanguage.json grammars/sassdoc.cson ./syntaxes/sassdoc.tmLanguage.json"
"languages": [{ },
"id": "scss", "contributes": {
"aliases": ["SCSS", "scss"], "languages": [
"extensions": [".scss"], {
"mimetypes": ["text/x-scss", "text/scss"], "id": "scss",
"configuration": "./language-configuration.json" "aliases": [
}], "SCSS",
"grammars": [{ "scss"
"language": "scss", ],
"scopeName": "source.css.scss", "extensions": [
"path": "./syntaxes/scss.tmLanguage.json" ".scss"
}, { ],
"scopeName": "source.sassdoc", "mimetypes": [
"path": "./syntaxes/sassdoc.tmLanguage.json" "text/x-scss",
}], "text/scss"
"problemMatchers": [{ ],
"name": "node-sass", "configuration": "./language-configuration.json"
"label": "Node Sass Compiler", }
"owner": "node-sass", ],
"fileLocation": "absolute", "grammars": [
"pattern": [{ {
"regexp": "^{$" "language": "scss",
}, "scopeName": "source.css.scss",
{ "path": "./syntaxes/scss.tmLanguage.json"
"regexp": "\\s*\"status\":\\s\\d+," },
}, {
{ "scopeName": "source.sassdoc",
"regexp": "\\s*\"file\":\\s\"(.*)\",", "path": "./syntaxes/sassdoc.tmLanguage.json"
"file": 1 }
}, ],
{ "problemMatchers": [
"regexp": "\\s*\"line\":\\s(\\d+),", {
"line": 1 "name": "node-sass",
}, "label": "Node Sass Compiler",
{ "owner": "node-sass",
"regexp": "\\s*\"column\":\\s(\\d+),", "fileLocation": "absolute",
"column": 1 "pattern": [
}, {
{ "regexp": "^{$"
"regexp": "\\s*\"message\":\\s\"(.*)\",", },
"message": 1 {
}, "regexp": "\\s*\"status\":\\s\\d+,"
{ },
"regexp": "\\s*\"formatted\":\\s(.*)" {
}, "regexp": "\\s*\"file\":\\s\"(.*)\",",
{ "file": 1
"regexp": "^}$" },
} {
] "regexp": "\\s*\"line\":\\s(\\d+),",
}] "line": 1
} },
{
"regexp": "\\s*\"column\":\\s(\\d+),",
"column": 1
},
{
"regexp": "\\s*\"message\":\\s\"(.*)\",",
"message": 1
},
{
"regexp": "\\s*\"formatted\":\\s(.*)"
},
{
"regexp": "^}$"
}
]
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "SCSS Language Basics", "displayName": "SCSS Language Basics",
"description": "Provides syntax highlighting, bracket matching and folding in SCSS files." "description": "Provides syntax highlighting, bracket matching and folding in SCSS files."
} }
+35 -35
View File
@@ -1,36 +1,36 @@
{ {
"name": "shaderlab", "name": "shaderlab",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js tgjones/shaders-tmLanguage grammars/shaderlab.json ./syntaxes/shaderlab.tmLanguage.json" "update-grammar": "node ../../build/npm/update-grammar.js tgjones/shaders-tmLanguage grammars/shaderlab.json ./syntaxes/shaderlab.tmLanguage.json"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "shaderlab", "id": "shaderlab",
"extensions": [ "extensions": [
".shader" ".shader"
], ],
"aliases": [ "aliases": [
"ShaderLab", "ShaderLab",
"shaderlab" "shaderlab"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "shaderlab", "language": "shaderlab",
"path": "./syntaxes/shaderlab.tmLanguage.json", "path": "./syntaxes/shaderlab.tmLanguage.json",
"scopeName": "source.shaderlab" "scopeName": "source.shaderlab"
} }
] ]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Shaderlab Language Basics", "displayName": "Shaderlab Language Basics",
"description": "Provides syntax highlighting and bracket matching in Shaderlab files." "description": "Provides syntax highlighting and bracket matching in Shaderlab files."
} }
+83 -68
View File
@@ -1,70 +1,85 @@
{ {
"name": "shellscript", "name": "shellscript",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-shellscript grammars/shell-unix-bash.cson ./syntaxes/shell-unix-bash.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js atom/language-shellscript grammars/shell-unix-bash.cson ./syntaxes/shell-unix-bash.tmLanguage.json"
"languages": [{ },
"id": "shellscript", "contributes": {
"aliases": ["Shell Script", "shellscript", "bash", "sh", "zsh", "ksh", "csh"], "languages": [
"extensions": [ {
".sh", "id": "shellscript",
".bash", "aliases": [
".bashrc", "Shell Script",
".bash_aliases", "shellscript",
".bash_profile", "bash",
".bash_login", "sh",
".ebuild", "zsh",
".install", "ksh",
".profile", "csh"
".bash_logout", ],
".zsh", "extensions": [
".zshrc", ".sh",
".zprofile", ".bash",
".zlogin", ".bashrc",
".zlogout", ".bash_aliases",
".zshenv", ".bash_profile",
".zsh-theme", ".bash_login",
".ksh", ".ebuild",
".csh", ".install",
".cshrc", ".profile",
".tcshrc", ".bash_logout",
".yashrc", ".zsh",
".yash_profile" ".zshrc",
], ".zprofile",
"filenames": [ ".zlogin",
"APKBUILD", ".zlogout",
"PKGBUILD", ".zshenv",
".envrc", ".zsh-theme",
".hushlogin", ".ksh",
"zshrc", ".csh",
"zshenv", ".cshrc",
"zlogin", ".tcshrc",
"zprofile", ".yashrc",
"zlogout", ".yash_profile"
"bashrc_Apple_Terminal", ],
"zshrc_Apple_Terminal" "filenames": [
], "APKBUILD",
"firstLine": "^#!.*\\b(bash|zsh|sh|ksh|dtksh|pdksh|mksh|ash|dash|yash|sh|csh|jcsh|tcsh|itcsh).*|^#\\s*-\\*-[^*]*mode:\\s*shell-script[^*]*-\\*-", "PKGBUILD",
"configuration": "./language-configuration.json", ".envrc",
"mimetypes": ["text/x-shellscript"] ".hushlogin",
}], "zshrc",
"grammars": [{ "zshenv",
"language": "shellscript", "zlogin",
"scopeName": "source.shell", "zprofile",
"path": "./syntaxes/shell-unix-bash.tmLanguage.json" "zlogout",
}], "bashrc_Apple_Terminal",
"configurationDefaults": { "zshrc_Apple_Terminal"
"[shellscript]": { ],
"files.eol": "\n" "firstLine": "^#!.*\\b(bash|zsh|sh|ksh|dtksh|pdksh|mksh|ash|dash|yash|sh|csh|jcsh|tcsh|itcsh).*|^#\\s*-\\*-[^*]*mode:\\s*shell-script[^*]*-\\*-",
} "configuration": "./language-configuration.json",
} "mimetypes": [
"text/x-shellscript"
} ]
}
],
"grammars": [
{
"language": "shellscript",
"scopeName": "source.shell",
"path": "./syntaxes/shell-unix-bash.tmLanguage.json"
}
],
"configurationDefaults": {
"[shellscript]": {
"files.eol": "\n"
}
}
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Shell Script Language Basics", "displayName": "Shell Script Language Basics",
"description": "Provides syntax highlighting and bracket matching in Shell Script files." "description": "Provides syntax highlighting and bracket matching in Shell Script files."
} }
+34 -34
View File
@@ -1,36 +1,36 @@
{ {
"name": "sql", "name": "sql",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"scripts": { "scripts": {
"update-grammar": "node ./build/update-grammar.js" "update-grammar": "node ./build/update-grammar.js"
}, },
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "sql", "id": "sql",
"extensions": [ "extensions": [
".sql", ".sql",
".dsql" ".dsql"
], ],
"aliases": [ "aliases": [
"SQL" "SQL"
], ],
"configuration": "./language-configuration.json" "configuration": "./language-configuration.json"
} }
], ],
"grammars": [ "grammars": [
{ {
"language": "sql", "language": "sql",
"scopeName": "source.sql", "scopeName": "source.sql",
"path": "./syntaxes/sql.tmLanguage.json" "path": "./syntaxes/sql.tmLanguage.json"
} }
] ]
} }
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "SQL Language Basics", "displayName": "SQL Language Basics",
"description": "Provides syntax highlighting and bracket matching in SQL files." "description": "Provides syntax highlighting and bracket matching in SQL files."
} }
+40 -27
View File
@@ -1,29 +1,42 @@
{ {
"name": "swift", "name": "swift",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js textmate/swift.tmbundle Syntaxes/Swift.tmLanguage ./syntaxes/swift.tmLanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js textmate/swift.tmbundle Syntaxes/Swift.tmLanguage ./syntaxes/swift.tmLanguage.json"
"languages": [{ },
"id": "swift", "contributes": {
"aliases": ["Swift","swift"], "languages": [
"extensions": [".swift"], {
"configuration": "./language-configuration.json" "id": "swift",
}], "aliases": [
"grammars": [{ "Swift",
"language": "swift", "swift"
"scopeName": "source.swift", ],
"path": "./syntaxes/swift.tmLanguage.json" "extensions": [
}], ".swift"
"snippets": [{ ],
"language": "swift", "configuration": "./language-configuration.json"
"path": "./snippets/swift.code-snippets" }
}] ],
} "grammars": [
{
"language": "swift",
"scopeName": "source.swift",
"path": "./syntaxes/swift.tmLanguage.json"
}
],
"snippets": [
{
"language": "swift",
"path": "./snippets/swift.code-snippets"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Swift Language Basics", "displayName": "Swift Language Basics",
"description": "Provides snippets, syntax highlighting and bracket matching in Swift files." "description": "Provides snippets, syntax highlighting and bracket matching in Swift files."
} }
@@ -17,9 +17,9 @@
"activationEvents": [ "activationEvents": [
"onStartupFinished" "onStartupFinished"
], ],
"dependencies": { "dependencies": {
"vscode-nls": "^5.0.0" "vscode-nls": "^5.0.0"
}, },
"contributes": { "contributes": {
"configuration": { "configuration": {
"title": "Testing", "title": "Testing",
+19 -17
View File
@@ -1,19 +1,21 @@
{ {
"name": "theme-abyss", "name": "theme-abyss",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"themes": [ },
{ "contributes": {
"id": "Abyss", "themes": [
"label": "%themeLabel%", {
"uiTheme": "vs-dark", "id": "Abyss",
"path": "./themes/abyss-color-theme.json" "label": "%themeLabel%",
} "uiTheme": "vs-dark",
] "path": "./themes/abyss-color-theme.json"
} }
]
}
} }
+53 -49
View File
@@ -1,51 +1,55 @@
{ {
"name": "theme-defaults", "name": "theme-defaults",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"categories": [ "Themes" ], "categories": [
"version": "1.0.0", "Themes"
"publisher": "vscode", ],
"license": "MIT", "version": "1.0.0",
"engines": { "vscode": "*" }, "publisher": "vscode",
"contributes": { "license": "MIT",
"themes": [ "engines": {
{ "vscode": "*"
"id": "Default Dark+", },
"label": "%darkPlusColorThemeLabel%", "contributes": {
"uiTheme": "vs-dark", "themes": [
"path": "./themes/dark_plus.json" {
}, "id": "Default Dark+",
{ "label": "%darkPlusColorThemeLabel%",
"id": "Default Light+", "uiTheme": "vs-dark",
"label": "%lightPlusColorThemeLabel%", "path": "./themes/dark_plus.json"
"uiTheme": "vs", },
"path": "./themes/light_plus.json" {
}, "id": "Default Light+",
{ "label": "%lightPlusColorThemeLabel%",
"id": "Visual Studio Dark", "uiTheme": "vs",
"label": "%darkColorThemeLabel%", "path": "./themes/light_plus.json"
"uiTheme": "vs-dark", },
"path": "./themes/dark_vs.json" {
}, "id": "Visual Studio Dark",
{ "label": "%darkColorThemeLabel%",
"id": "Visual Studio Light", "uiTheme": "vs-dark",
"label": "%lightColorThemeLabel%", "path": "./themes/dark_vs.json"
"uiTheme": "vs", },
"path": "./themes/light_vs.json" {
}, "id": "Visual Studio Light",
{ "label": "%lightColorThemeLabel%",
"id": "Default High Contrast", "uiTheme": "vs",
"label": "%hcColorThemeLabel%", "path": "./themes/light_vs.json"
"uiTheme": "hc-black", },
"path": "./themes/hc_black.json" {
} "id": "Default High Contrast",
], "label": "%hcColorThemeLabel%",
"iconThemes": [ "uiTheme": "hc-black",
{ "path": "./themes/hc_black.json"
"id": "vs-minimal", }
"label": "%minimalIconThemeLabel%", ],
"path": "./fileicons/vs_minimal-icon-theme.json" "iconThemes": [
} {
] "id": "vs-minimal",
} "label": "%minimalIconThemeLabel%",
"path": "./fileicons/vs_minimal-icon-theme.json"
}
]
}
} }
+19 -17
View File
@@ -1,19 +1,21 @@
{ {
"name": "theme-kimbie-dark", "name": "theme-kimbie-dark",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"themes": [ },
{ "contributes": {
"id": "Kimbie Dark", "themes": [
"label": "%themeLabel%", {
"uiTheme": "vs-dark", "id": "Kimbie Dark",
"path": "./themes/kimbie-dark-color-theme.json" "label": "%themeLabel%",
} "uiTheme": "vs-dark",
] "path": "./themes/kimbie-dark-color-theme.json"
} }
]
}
} }
+19 -19
View File
@@ -1,21 +1,21 @@
{ {
"name": "theme-monokai-dimmed", "name": "theme-monokai-dimmed",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"contributes": { "contributes": {
"themes": [ "themes": [
{ {
"id": "Monokai Dimmed", "id": "Monokai Dimmed",
"label": "%themeLabel%", "label": "%themeLabel%",
"uiTheme": "vs-dark", "uiTheme": "vs-dark",
"path": "./themes/dimmed-monokai-color-theme.json" "path": "./themes/dimmed-monokai-color-theme.json"
} }
] ]
} }
} }
+19 -19
View File
@@ -1,21 +1,21 @@
{ {
"name": "theme-monokai", "name": "theme-monokai",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"contributes": { "contributes": {
"themes": [ "themes": [
{ {
"id": "Monokai", "id": "Monokai",
"label": "%themeLabel%", "label": "%themeLabel%",
"uiTheme": "vs-dark", "uiTheme": "vs-dark",
"path": "./themes/monokai-color-theme.json" "path": "./themes/monokai-color-theme.json"
} }
] ]
} }
} }
+19 -19
View File
@@ -1,21 +1,21 @@
{ {
"name": "theme-quietlight", "name": "theme-quietlight",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "*" "vscode": "*"
}, },
"contributes": { "contributes": {
"themes": [ "themes": [
{ {
"id": "Quiet Light", "id": "Quiet Light",
"label": "%themeLabel%", "label": "%themeLabel%",
"uiTheme": "vs", "uiTheme": "vs",
"path": "./themes/quietlight-color-theme.json" "path": "./themes/quietlight-color-theme.json"
} }
] ]
} }
} }
+19 -17
View File
@@ -1,19 +1,21 @@
{ {
"name": "theme-red", "name": "theme-red",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"themes": [ },
{ "contributes": {
"id": "Red", "themes": [
"label": "%themeLabel%", {
"uiTheme": "vs-dark", "id": "Red",
"path": "./themes/Red-color-theme.json" "label": "%themeLabel%",
} "uiTheme": "vs-dark",
] "path": "./themes/Red-color-theme.json"
} }
]
}
} }
+23 -21
View File
@@ -1,23 +1,25 @@
{ {
"name": "vscode-theme-seti", "name": "vscode-theme-seti",
"private": true, "private": true,
"version": "1.0.0", "version": "1.0.0",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"icon": "icons/seti-circular-128x128.png", "icon": "icons/seti-circular-128x128.png",
"scripts": { "scripts": {
"update": "node ./build/update-icon-theme.js" "update": "node ./build/update-icon-theme.js"
}, },
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"iconThemes": [ },
{ "contributes": {
"id": "vs-seti", "iconThemes": [
"label": "%themeLabel%", {
"path": "./icons/vs-seti-icon-theme.json" "id": "vs-seti",
} "label": "%themeLabel%",
] "path": "./icons/vs-seti-icon-theme.json"
} }
]
}
} }
+19 -17
View File
@@ -1,19 +1,21 @@
{ {
"name": "theme-solarized-dark", "name": "theme-solarized-dark",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"themes": [ },
{ "contributes": {
"id": "Solarized Dark", "themes": [
"label": "%themeLabel%", {
"uiTheme": "vs-dark", "id": "Solarized Dark",
"path": "./themes/solarized-dark-color-theme.json" "label": "%themeLabel%",
} "uiTheme": "vs-dark",
] "path": "./themes/solarized-dark-color-theme.json"
} }
]
}
} }
+19 -17
View File
@@ -1,19 +1,21 @@
{ {
"name": "theme-solarized-light", "name": "theme-solarized-light",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"themes": [ },
{ "contributes": {
"id": "Solarized Light", "themes": [
"label": "%themeLabel%", {
"uiTheme": "vs", "id": "Solarized Light",
"path": "./themes/solarized-light-color-theme.json" "label": "%themeLabel%",
} "uiTheme": "vs",
] "path": "./themes/solarized-light-color-theme.json"
} }
]
}
} }
@@ -1,19 +1,21 @@
{ {
"name": "theme-tomorrow-night-blue", "name": "theme-tomorrow-night-blue",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"contributes": { "vscode": "*"
"themes": [ },
{ "contributes": {
"id": "Tomorrow Night Blue", "themes": [
"label": "%themeLabel%", {
"uiTheme": "vs-dark", "id": "Tomorrow Night Blue",
"path": "./themes/tomorrow-night-blue-color-theme.json" "label": "%themeLabel%",
} "uiTheme": "vs-dark",
] "path": "./themes/tomorrow-night-blue-color-theme.json"
} }
]
}
} }
@@ -1,4 +1,4 @@
{ {
"displayName": "TypeScript Language Basics", "displayName": "TypeScript Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in TypeScript files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in TypeScript files."
} }
+43 -27
View File
@@ -1,29 +1,45 @@
{ {
"name": "vb", "name": "vb",
"displayName": "%displayName%", "displayName": "%displayName%",
"description": "%description%", "description": "%description%",
"version": "1.0.0", "version": "1.0.0",
"publisher": "vscode", "publisher": "vscode",
"license": "MIT", "license": "MIT",
"engines": { "vscode": "*" }, "engines": {
"scripts": { "vscode": "*"
"update-grammar": "node ../../build/npm/update-grammar.js textmate/asp.vb.net.tmbundle Syntaxes/ASP%20VB.net.plist ./syntaxes/asp-vb-net.tmlanguage.json" },
}, "scripts": {
"contributes": { "update-grammar": "node ../../build/npm/update-grammar.js textmate/asp.vb.net.tmbundle Syntaxes/ASP%20VB.net.plist ./syntaxes/asp-vb-net.tmlanguage.json"
"languages": [{ },
"id": "vb", "contributes": {
"extensions": [ ".vb", ".brs", ".vbs", ".bas" ], "languages": [
"aliases": [ "Visual Basic", "vb" ], {
"configuration": "./language-configuration.json" "id": "vb",
}], "extensions": [
"grammars": [{ ".vb",
"language": "vb", ".brs",
"scopeName": "source.asp.vb.net", ".vbs",
"path": "./syntaxes/asp-vb-net.tmlanguage.json" ".bas"
}], ],
"snippets": [{ "aliases": [
"language": "vb", "Visual Basic",
"path": "./snippets/vb.code-snippets" "vb"
}] ],
} "configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "vb",
"scopeName": "source.asp.vb.net",
"path": "./syntaxes/asp-vb-net.tmlanguage.json"
}
],
"snippets": [
{
"language": "vb",
"path": "./snippets/vb.code-snippets"
}
]
}
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"displayName": "Visual Basic Language Basics", "displayName": "Visual Basic Language Basics",
"description": "Provides snippets, syntax highlighting, bracket matching and folding in Visual Basic files." "description": "Provides snippets, syntax highlighting, bracket matching and folding in Visual Basic files."
} }

Some files were not shown because too many files have changed in this diff Show More