193 lines
No EOL
5.5 KiB
JSON
193 lines
No EOL
5.5 KiB
JSON
{
|
|
"name": "bracket-pair-colorizer-2",
|
|
"displayName": "Bracket Pair Colorizer 2",
|
|
"description": "A customizable extension for colorizing matching brackets",
|
|
"version": "0.2.1",
|
|
"publisher": "CoenraadS",
|
|
"engines": {
|
|
"vscode": "^1.45.0"
|
|
},
|
|
"icon": "images/icon.png",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"extensionKind": [
|
|
"ui",
|
|
"workspace"
|
|
],
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"keywords": [
|
|
"bracket",
|
|
"brackets",
|
|
"pair",
|
|
"color",
|
|
"colour",
|
|
"multi-root ready"
|
|
],
|
|
"galleryBanner": {
|
|
"color": "#1E1E1E",
|
|
"theme": "dark"
|
|
},
|
|
"main": "./out/src/extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "bracket-pair-colorizer-2.expandBracketSelection",
|
|
"title": "Expand Bracket Selection"
|
|
},
|
|
{
|
|
"command": "bracket-pair-colorizer-2.undoBracketSelection",
|
|
"title": "Undo Bracket Selection"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "Bracket Pair Colorizer 2",
|
|
"properties": {
|
|
"bracket-pair-colorizer-2.colors": {
|
|
"type": "array",
|
|
"default": [
|
|
"Gold",
|
|
"Orchid",
|
|
"LightSkyBlue"
|
|
],
|
|
"description": "Scope colors",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.unmatchedScopeColor": {
|
|
"type": "string",
|
|
"default": "Red",
|
|
"description": "Unmatched Scope Color",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.forceUniqueOpeningColor": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Ensure that an opening brackets color does not match a previous brackets color",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.forceIterationColorCycle": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Should opening brackets iterate the color cycle even if they are not nested",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.colorMode": {
|
|
"type": "string",
|
|
"enum": [
|
|
"Consecutive",
|
|
"Independent"
|
|
],
|
|
"default": "Consecutive",
|
|
"description": "Should different brackets share a color group (Consecutive), or use their own color group (Independent)",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.highlightActiveScope": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Should the active scope brackets always be highlighted? Recommended to disable editor.matchBrackets if using this feature.",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.activeScopeCSS": {
|
|
"type": "array",
|
|
"default": [
|
|
"borderStyle : solid",
|
|
"borderWidth : 1px",
|
|
"borderColor : {color}",
|
|
"opacity: 0.5"
|
|
],
|
|
"description": "CSS for the active scope. Use {color} to match the bracket color. The string types listed at https://code.visualstudio.com/docs/extensionAPI/vscode-api#DecorationRenderOptions can be used",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.showBracketsInGutter": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Show active bracket scope in gutter?",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.showBracketsInRuler": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Show active bracket scope in ruler?",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.rulerPosition": {
|
|
"type": "string",
|
|
"enum": [
|
|
"Center",
|
|
"Full",
|
|
"Left",
|
|
"Right"
|
|
],
|
|
"default": "Center",
|
|
"description": "Show active bracket scope in ruler?",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.showVerticalScopeLine": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show a vertical line on the left side of the editor representing the active bracket scope?",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.showHorizontalScopeLine": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show a horizontal line to create a block around the active bracket scope?",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.scopeLineRelativePosition": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "True: Scope Line will start from the ending bracket position. False: Scope Line will always be at column 0",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.scopeLineCSS": {
|
|
"type": "array",
|
|
"default": [
|
|
"borderStyle : solid",
|
|
"borderWidth : 1px",
|
|
"borderColor : {color}",
|
|
"opacity: 0.5"
|
|
],
|
|
"description": "CSS for the scope line. Use {color} to match the bracket color. The string types listed at https://code.visualstudio.com/docs/extensionAPI/vscode-api#DecorationRenderOptions can be used",
|
|
"scope": "window"
|
|
},
|
|
"bracket-pair-colorizer-2.excludedLanguages": {
|
|
"type": "array",
|
|
"default": [],
|
|
"description": "Don't colorize files of these languages",
|
|
"scope": "window"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/json5": "0.0.30",
|
|
"@types/node": "^6.14.13",
|
|
"tslint": "^4.5.1",
|
|
"typescript": "^4.3.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CoenraadS/Bracket-Pair-Colorizer-2"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"dependencies": {
|
|
"@types/vscode": "^1.57.0",
|
|
"escape-html": "^1.0.3",
|
|
"json5": "^2.2.0",
|
|
"vscode-uri": "^1.0.6"
|
|
},
|
|
"__metadata": {
|
|
"id": "5a6e2b21-1d61-4acd-b31b-907f9c23f18a",
|
|
"publisherId": "d0a031ad-49a6-4982-aba0-6391e97e948b",
|
|
"publisherDisplayName": "CoenraadS",
|
|
"installedTimestamp": 1632235492796
|
|
}
|
|
} |