-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
57 lines (57 loc) · 1.82 KB
/
extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"identifier": "com.brendanthompson.terraform-nova",
"name": "Terraform",
"organization": "Brendan Thompson",
"description": "Terraform language support and intelligence.",
"repository": "https://github.com/BrendanThompson/terraform-nova",
"bugs": "https://github.com/BrendanThompson/terraform-nova/issues",
"homepage": "https://brendanthompson.com",
"version": "0.6.3",
"categories": ["languages", "tasks", "formatters", "clips"],
"keywords": ["terraform", "hashicorp", "hcl"],
"main": "main.js",
"activationEvents": [
"onLanguage:HCL",
"onLanguage:Terraform",
"onLanguage:Terraform Variables",
"onWorkspaceContains:*.hcl",
"onWorkspaceContains:*.tf",
"onWorkspaceContains:*.tfvars"
],
"entitlements": {
"process": true,
"filesystem": "readwrite"
},
"config": [{
"key": "terraform-nova.language-server-path",
"title": "Language Server Path",
"type": "path",
"default": "/opt/homebrew/bin/terraform-ls"
},
{
"key": "terraform-nova.terraform-path",
"title": "Terraform Path",
"type": "path",
"default": "/opt/homebrew/bin/terraform"
}
],
"commands": {
"extensions": [{
"title": "Restart Terraform Language Server",
"command": "terraform-nova.restartLSP"
},
{
"title": "Stop Terraform Language Server",
"command": "terraform-nova.stopLSP"
}
],
"editor": [{
"title": "Format Document",
"command": "terraform-nova.format",
"when": "editorHasFocus",
"filters": {
"syntaxes": ["terraform"]
}
}]
}
}