2018-07-30 18:58:49 +00:00
|
|
|
{
|
2018-09-16 09:54:24 +00:00
|
|
|
"name": "ra-lsp",
|
|
|
|
"displayName": "ra-lsp",
|
2018-12-08 20:56:31 +00:00
|
|
|
"description": "An alternative rust language server to the RLS",
|
|
|
|
"preview": true,
|
|
|
|
"private": true,
|
2018-08-27 19:52:43 +00:00
|
|
|
"version": "0.0.1",
|
|
|
|
"publisher": "matklad",
|
|
|
|
"repository": {
|
2018-09-16 09:54:24 +00:00
|
|
|
"url": "https://github.com/matklad/rust-analyzer/"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Other"
|
2018-08-10 22:04:09 +00:00
|
|
|
],
|
2018-08-27 19:52:43 +00:00
|
|
|
"engines": {
|
2019-09-10 06:49:23 +00:00
|
|
|
"vscode": "^1.37.0"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"vscode:prepublish": "npm run compile",
|
2018-12-08 21:09:32 +00:00
|
|
|
"package": "vsce package",
|
2019-09-23 21:25:16 +00:00
|
|
|
"compile": "rollup -c && shx cp src/utils/terminateProcess.sh bundle/terminateProcess.sh",
|
2018-08-27 19:52:43 +00:00
|
|
|
"watch": "tsc -watch -p ./",
|
2018-10-09 20:56:15 +00:00
|
|
|
"fix": "prettier **/*.{json,ts} --write && tslint --project . --fix",
|
2018-10-08 21:36:47 +00:00
|
|
|
"lint": "tslint --project .",
|
|
|
|
"prettier": "prettier **/*.{json,ts}",
|
2019-09-23 21:25:16 +00:00
|
|
|
"test": "tsc -p . && node ./out/test/runTest.js",
|
2019-07-29 08:39:40 +00:00
|
|
|
"travis": "npm run compile && npm run test && npm run lint && npm run prettier -- --write && git diff --exit-code"
|
2018-10-08 21:36:47 +00:00
|
|
|
},
|
|
|
|
"prettier": {
|
2018-10-08 21:38:33 +00:00
|
|
|
"tabWidth": 4,
|
|
|
|
"singleQuote": true
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-05-23 17:42:42 +00:00
|
|
|
"seedrandom": "^3.0.1",
|
2019-04-21 08:32:48 +00:00
|
|
|
"vscode-languageclient": "^5.3.0-next.4"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-09-23 21:25:16 +00:00
|
|
|
"@types/glob": "^7.1.1",
|
2019-07-29 08:22:56 +00:00
|
|
|
"@types/mocha": "^5.2.7",
|
|
|
|
"@types/node": "^10.14.13",
|
2019-05-23 17:42:42 +00:00
|
|
|
"@types/seedrandom": "^2.4.28",
|
2019-08-25 15:50:46 +00:00
|
|
|
"@types/vscode": "^1.36.0",
|
|
|
|
"glob": "^7.1.4",
|
|
|
|
"mocha": "^6.2.0",
|
2019-07-29 08:22:56 +00:00
|
|
|
"prettier": "^1.18.2",
|
2019-09-23 21:25:16 +00:00
|
|
|
"rollup": "^1.21.4",
|
|
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
|
|
"rollup-plugin-typescript": "^1.0.1",
|
2019-04-21 08:32:48 +00:00
|
|
|
"shx": "^0.3.1",
|
2019-07-29 08:22:56 +00:00
|
|
|
"tslint": "^5.18.0",
|
2019-02-07 19:55:09 +00:00
|
|
|
"tslint-config-prettier": "^1.18.0",
|
2019-07-29 08:22:56 +00:00
|
|
|
"typescript": "^3.5.3",
|
2019-07-25 09:17:27 +00:00
|
|
|
"vsce": "^1.66.0",
|
2019-08-25 15:50:46 +00:00
|
|
|
"vscode-test": "^1.2.0"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
"activationEvents": [
|
2019-01-29 17:08:02 +00:00
|
|
|
"onLanguage:rust",
|
|
|
|
"onCommand:rust-analyzer.analyzerStatus",
|
2019-03-13 13:14:30 +00:00
|
|
|
"onCommand:rust-analyzer.collectGarbage",
|
|
|
|
"workspaceContains:**/Cargo.toml"
|
2018-08-13 10:46:05 +00:00
|
|
|
],
|
2019-09-23 21:25:16 +00:00
|
|
|
"main": "./bundle/extension",
|
2018-08-27 19:52:43 +00:00
|
|
|
"contributes": {
|
|
|
|
"taskDefinitions": [
|
|
|
|
{
|
|
|
|
"type": "cargo",
|
|
|
|
"required": [
|
|
|
|
"command"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"label": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"command": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"args": {
|
|
|
|
"type": "array"
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"type": "object"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"commands": [
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.syntaxTree",
|
2019-03-03 19:21:40 +00:00
|
|
|
"title": "Show Syntax Tree",
|
2019-01-29 17:16:14 +00:00
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.matchingBrace",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Find matching brace",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.parentModule",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Locate parent module",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.joinLines",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Join lines",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.run",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Run",
|
|
|
|
"category": "Rust Analyzer"
|
2019-01-22 21:15:03 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.analyzerStatus",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Status",
|
|
|
|
"category": "Rust Analyzer"
|
2019-01-25 16:11:58 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.collectGarbage",
|
2019-01-29 17:16:14 +00:00
|
|
|
"title": "Run garbage collection",
|
|
|
|
"category": "Rust Analyzer"
|
2019-04-15 19:41:27 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "rust-analyzer.reload",
|
|
|
|
"title": "Restart server",
|
|
|
|
"category": "Rust Analyzer"
|
2019-04-13 20:13:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "rust-analyzer.startCargoWatch",
|
|
|
|
"title": "Start Cargo Watch",
|
|
|
|
"category": "Rust Analyzer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "rust-analyzer.stopCargoWatch",
|
|
|
|
"title": "Stop Cargo Watch",
|
|
|
|
"category": "Rust Analyzer"
|
2018-08-27 19:52:43 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"keybindings": [
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.parentModule",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+u",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.matchingBrace",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+shift+m",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.joinLines",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+shift+j",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
},
|
|
|
|
{
|
2019-01-28 11:43:07 +00:00
|
|
|
"command": "rust-analyzer.run",
|
2018-08-27 19:52:43 +00:00
|
|
|
"key": "ctrl+r",
|
|
|
|
"when": "editorTextFocus && editorLangId == rust"
|
|
|
|
}
|
2018-08-13 10:46:05 +00:00
|
|
|
],
|
2018-09-29 19:27:41 +00:00
|
|
|
"configuration": {
|
|
|
|
"type": "object",
|
2018-10-06 20:53:12 +00:00
|
|
|
"title": "Rust Analyzer",
|
2018-09-29 19:27:41 +00:00
|
|
|
"properties": {
|
2019-01-28 11:43:07 +00:00
|
|
|
"rust-analyzer.highlightingOn": {
|
2018-09-29 19:27:41 +00:00
|
|
|
"type": "boolean",
|
2019-02-26 06:56:11 +00:00
|
|
|
"default": false,
|
2018-09-29 19:27:41 +00:00
|
|
|
"description": "Highlight Rust code (overrides built-in syntax highlighting)"
|
2018-12-20 12:05:41 +00:00
|
|
|
},
|
2019-05-27 09:26:15 +00:00
|
|
|
"rust-analyzer.rainbowHighlightingOn": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
|
|
|
"description": "When highlighting Rust code, use a unique color per identifier"
|
|
|
|
},
|
2019-08-22 11:44:16 +00:00
|
|
|
"rust-analyzer.featureFlags": {
|
|
|
|
"type": "object",
|
|
|
|
"default": {},
|
|
|
|
"description": "Fine grained feature flags to disable annoying features"
|
2019-03-06 09:34:38 +00:00
|
|
|
},
|
2019-02-07 10:37:36 +00:00
|
|
|
"rust-analyzer.enableEnhancedTyping": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"description": "Enables enhanced typing. NOTE: If using a VIM extension, you should set this to false"
|
|
|
|
},
|
2019-01-28 11:43:07 +00:00
|
|
|
"rust-analyzer.raLspServerPath": {
|
2019-01-05 15:28:41 +00:00
|
|
|
"type": [
|
|
|
|
"string"
|
|
|
|
],
|
|
|
|
"default": "ra_lsp_server",
|
|
|
|
"description": "Path to ra_lsp_server executable"
|
|
|
|
},
|
2019-03-18 21:35:47 +00:00
|
|
|
"rust-analyzer.enableCargoWatchOnStartup": {
|
2019-03-21 11:56:25 +00:00
|
|
|
"type": "string",
|
|
|
|
"default": "ask",
|
|
|
|
"enum": [
|
|
|
|
"ask",
|
|
|
|
"enabled",
|
|
|
|
"disabled"
|
|
|
|
],
|
|
|
|
"enumDescriptions": [
|
|
|
|
"Asks each time whether to run `cargo watch`",
|
|
|
|
"`cargo watch` is always started",
|
|
|
|
"Don't start `cargo watch`"
|
|
|
|
],
|
|
|
|
"description": "Whether to run `cargo watch` on startup"
|
2019-03-18 21:35:47 +00:00
|
|
|
},
|
2019-08-06 11:34:28 +00:00
|
|
|
"rust-analyzer.excludeGlobs": {
|
|
|
|
"type": "array",
|
2019-08-21 14:30:58 +00:00
|
|
|
"default": [],
|
2019-08-06 11:34:28 +00:00
|
|
|
"description": "Paths to exclude from analysis"
|
|
|
|
},
|
2019-09-06 13:25:24 +00:00
|
|
|
"rust-analyzer.useClientWatching": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
|
|
|
"description": "client provided file watching instead of notify watching."
|
|
|
|
},
|
2019-06-24 10:50:34 +00:00
|
|
|
"rust-analyzer.cargo-watch.arguments": {
|
2019-04-02 06:43:02 +00:00
|
|
|
"type": "string",
|
2019-06-24 10:02:20 +00:00
|
|
|
"description": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )",
|
2019-04-02 06:43:02 +00:00
|
|
|
"default": ""
|
|
|
|
},
|
2019-06-24 10:35:11 +00:00
|
|
|
"rust-analyzer.cargo-watch.command": {
|
2019-06-24 10:02:20 +00:00
|
|
|
"type": "string",
|
|
|
|
"description": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )",
|
2019-06-24 10:50:34 +00:00
|
|
|
"default": "check"
|
2019-06-24 10:02:20 +00:00
|
|
|
},
|
2019-01-28 11:43:07 +00:00
|
|
|
"rust-analyzer.trace.server": {
|
2018-12-20 12:05:41 +00:00
|
|
|
"type": "string",
|
|
|
|
"scope": "window",
|
|
|
|
"enum": [
|
|
|
|
"off",
|
|
|
|
"messages",
|
|
|
|
"verbose"
|
|
|
|
],
|
2019-04-02 06:43:02 +00:00
|
|
|
"enumDescriptions": [
|
|
|
|
"No traces",
|
|
|
|
"Error only",
|
|
|
|
"Full log"
|
|
|
|
],
|
2018-12-20 12:05:41 +00:00
|
|
|
"default": "off",
|
2019-01-28 11:43:07 +00:00
|
|
|
"description": "Trace requests to the ra_lsp_server"
|
2019-04-02 05:07:40 +00:00
|
|
|
},
|
|
|
|
"rust-analyzer.trace.cargo-watch": {
|
|
|
|
"type": "string",
|
|
|
|
"scope": "window",
|
|
|
|
"enum": [
|
|
|
|
"off",
|
|
|
|
"error",
|
|
|
|
"verbose"
|
|
|
|
],
|
|
|
|
"default": "off",
|
|
|
|
"description": "Trace output of cargo-watch"
|
2019-06-07 17:49:29 +00:00
|
|
|
},
|
|
|
|
"rust-analyzer.lruCapacity": {
|
|
|
|
"type": "number",
|
|
|
|
"default": null,
|
|
|
|
"description": "Number of syntax trees rust-analyzer keeps in memory"
|
2019-07-23 13:38:21 +00:00
|
|
|
},
|
|
|
|
"rust-analyzer.displayInlayHints": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
|
|
|
"description": "Display additional type information in the editor"
|
2018-09-29 19:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-12-30 17:24:07 +00:00
|
|
|
"problemPatterns": [
|
2018-08-27 19:52:43 +00:00
|
|
|
{
|
|
|
|
"name": "rustc",
|
2018-12-30 17:24:07 +00:00
|
|
|
"patterns": [
|
2018-08-27 19:52:43 +00:00
|
|
|
{
|
2018-12-30 17:24:07 +00:00
|
|
|
"regexp": "^(warning|warn|error)(?:\\[(.*?)\\])?: (.*)$",
|
2018-08-27 19:52:43 +00:00
|
|
|
"severity": 1,
|
2018-12-30 17:24:07 +00:00
|
|
|
"code": 2,
|
|
|
|
"message": 3
|
2018-08-27 19:52:43 +00:00
|
|
|
},
|
|
|
|
{
|
2018-12-30 17:24:07 +00:00
|
|
|
"regexp": "^[\\s->=]*(.*?):(\\d*):(\\d*)\\s*$",
|
|
|
|
"file": 1,
|
|
|
|
"line": 2,
|
|
|
|
"column": 3
|
2018-08-27 19:52:43 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2018-12-30 17:24:07 +00:00
|
|
|
],
|
|
|
|
"problemMatchers": [
|
|
|
|
{
|
|
|
|
"name": "rustc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceRoot}"
|
|
|
|
],
|
2019-02-18 18:12:54 +00:00
|
|
|
"pattern": "$rustc"
|
2019-04-14 10:45:36 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "rustc-watch",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceRoot}"
|
|
|
|
],
|
|
|
|
"background": {
|
|
|
|
"beginsPattern": "^\\[Running\\b",
|
|
|
|
"endsPattern": "^\\[Finished running\\b"
|
|
|
|
},
|
|
|
|
"pattern": "$rustc"
|
2018-12-30 17:24:07 +00:00
|
|
|
}
|
2019-05-21 11:04:54 +00:00
|
|
|
],
|
|
|
|
"colors": [
|
|
|
|
{
|
|
|
|
"id": "ralsp.comment",
|
|
|
|
"description": "Color for comments",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#6A9955",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#008000",
|
|
|
|
"highContrast": "#7CA668"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.string",
|
|
|
|
"description": "Color for strings",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#CE9178",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#A31515",
|
|
|
|
"highContrast": "#CE9178"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.keyword",
|
|
|
|
"description": "Color for keywords",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#569cd6",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#0000FF",
|
|
|
|
"highContrast": "#569CD6"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2019-05-21 13:28:10 +00:00
|
|
|
"id": "ralsp.keyword.control",
|
2019-05-21 11:04:54 +00:00
|
|
|
"description": "Color for control keywords",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#C586C0",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#AF00DB",
|
|
|
|
"highContrast": "#C586C0"
|
|
|
|
}
|
|
|
|
},
|
2019-05-21 13:28:10 +00:00
|
|
|
{
|
|
|
|
"id": "ralsp.keyword.unsafe",
|
|
|
|
"description": "Color for unsafe",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#FF3030",
|
|
|
|
"light": "#FF1010",
|
|
|
|
"highContrast": "#FF1010"
|
|
|
|
}
|
|
|
|
},
|
2019-05-21 11:04:54 +00:00
|
|
|
{
|
|
|
|
"id": "ralsp.function",
|
|
|
|
"description": "Color for functions",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#DCDCAA",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#795E26",
|
|
|
|
"highContrast": "#DCDCAA"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.parameter",
|
|
|
|
"description": "Color for parameters",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#9CDCFE",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#001080",
|
|
|
|
"highContrast": "#9CDCFE"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.builtin",
|
|
|
|
"description": "Color for builtins",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#DD6718",
|
|
|
|
"light": "#DD6718",
|
|
|
|
"highContrast": "#DD6718"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.text",
|
|
|
|
"description": "Color for text",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#D4D4D4",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#000000",
|
|
|
|
"highContrast": "#FFFFFF"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.attribute",
|
|
|
|
"description": "Color for attributes",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#9FE9BF",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#1F4B1F",
|
|
|
|
"highContrast": "#108010"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.literal",
|
|
|
|
"description": "Color for literals",
|
|
|
|
"defaults": {
|
2019-05-21 13:28:10 +00:00
|
|
|
"dark": "#BECEA8",
|
2019-05-21 11:04:54 +00:00
|
|
|
"light": "#09885A",
|
|
|
|
"highContrast": "#B5CEA8"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.macro",
|
2019-05-23 10:26:38 +00:00
|
|
|
"description": "Color for macros",
|
2019-05-21 11:04:54 +00:00
|
|
|
"defaults": {
|
|
|
|
"dark": "#BFEBBF",
|
|
|
|
"light": "#DD6718",
|
|
|
|
"highContrast": "#ED7718"
|
|
|
|
}
|
2019-05-23 10:26:38 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.constant",
|
|
|
|
"description": "Color for constants",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#569cd6",
|
|
|
|
"light": "#267cb6",
|
|
|
|
"highContrast": "#569cd6"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.type",
|
|
|
|
"description": "Color for types",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#4EC9B0",
|
|
|
|
"light": "#267F99",
|
|
|
|
"highContrast": "#4EC9B0"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.field",
|
|
|
|
"description": "Color for fields",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#4EC9B0",
|
|
|
|
"light": "#267F99",
|
|
|
|
"highContrast": "#4EC9B0"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.variable",
|
|
|
|
"description": "Color for variables",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#4EC9B0",
|
|
|
|
"light": "#267F99",
|
|
|
|
"highContrast": "#4EC9B0"
|
|
|
|
}
|
|
|
|
},
|
2019-07-18 15:49:32 +00:00
|
|
|
{
|
|
|
|
"id": "ralsp.variable.mut",
|
|
|
|
"description": "Color for mutable variables",
|
|
|
|
"defaults": {
|
2019-07-19 11:43:36 +00:00
|
|
|
"dark": "#4EC9B0",
|
|
|
|
"light": "#267F99",
|
|
|
|
"highContrast": "#4EC9B0"
|
2019-07-18 15:49:32 +00:00
|
|
|
}
|
|
|
|
},
|
2019-05-23 10:26:38 +00:00
|
|
|
{
|
|
|
|
"id": "ralsp.module",
|
|
|
|
"description": "Color for modules",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#D4D4D4",
|
|
|
|
"light": "#000000",
|
|
|
|
"highContrast": "#FFFFFF"
|
|
|
|
}
|
2019-07-23 13:38:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "ralsp.inlayHint",
|
|
|
|
"description": "Color for inlay hints",
|
|
|
|
"defaults": {
|
|
|
|
"dark": "#A0A0A0F0",
|
|
|
|
"light": "#747474",
|
|
|
|
"highContrast": "#BEBEBE"
|
|
|
|
}
|
2019-05-21 11:04:54 +00:00
|
|
|
}
|
2018-08-13 10:46:05 +00:00
|
|
|
]
|
2018-08-27 19:52:43 +00:00
|
|
|
}
|
2019-04-19 16:28:14 +00:00
|
|
|
}
|