|
14 | 14 | "vscode": "^1.18.x" |
15 | 15 | }, |
16 | 16 | "icon": "assets/bash-logo.png", |
17 | | - "categories": ["Other"], |
18 | | - "keywords": ["shell script", "bash script", "bash"], |
19 | | - "activationEvents": ["onLanguage:shellscript"], |
| 17 | + "categories": [ |
| 18 | + "Other" |
| 19 | + ], |
| 20 | + "keywords": [ |
| 21 | + "shell script", |
| 22 | + "bash script", |
| 23 | + "bash" |
| 24 | + ], |
| 25 | + "activationEvents": [ |
| 26 | + "onLanguage:shellscript" |
| 27 | + ], |
20 | 28 | "main": "./out/src/extension", |
21 | 29 | "contributes": { |
22 | 30 | "configuration": { |
|
26 | 34 | "bashIde.path": { |
27 | 35 | "type": "string", |
28 | 36 | "default": null, |
29 | | - "description": |
30 | | - "The path to the bash language server binary (example: /usr/local/bin/bash-language-server)" |
| 37 | + "description": "The path to the bash language server binary (example: /usr/local/bin/bash-language-server)" |
31 | 38 | }, |
32 | 39 | "bashIde.highlightParsingErrors": { |
33 | 40 | "type": "boolean", |
34 | 41 | "default": true, |
35 | | - "description": |
36 | | - "If enabled parsing errors will be highlighted as 'problems' " |
| 42 | + "description": "If enabled parsing errors will be highlighted as 'problems' " |
37 | 43 | }, |
38 | 44 | "bashIde.explainshellEndpoint": { |
39 | 45 | "type": "string", |
40 | 46 | "default": "", |
41 | | - "description": |
42 | | - "Set this to https://explainshell.com (once https://github.com/idank/explainshell/pull/125 is merged in) in order to get hover documentation on flags and options." |
| 47 | + "description": "Set this to https://explainshell.com (once https://github.com/idank/explainshell/pull/125 is merged in) in order to get hover documentation on flags and options." |
43 | 48 | } |
44 | 49 | } |
45 | 50 | } |
|
48 | 53 | "vscode:prepublish": "yarn run compile", |
49 | 54 | "compile": "rm -rf out && ../node_modules/.bin/tsc -p ./", |
50 | 55 | "compile:watch": "../node_modules/.bin/tsc -w -p ./", |
51 | | - "update-vscode": "node ./node_modules/vscode/bin/install", |
52 | | - "postinstall": "node ./node_modules/vscode/bin/install" |
| 56 | + "update-vscode": "vscode-install", |
| 57 | + "postinstall": "vscode-install" |
53 | 58 | }, |
54 | 59 | "dependencies": { |
55 | 60 | "@types/semver-compare": "^1.0.0", |
|
0 commit comments