-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.03 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.03 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vscode-orb",
"displayName": "ORB Template Language Support",
"description": "Support for the ORB template language in VSCode",
"version": "0.1.2",
"publisher": "kuyio-inc",
"repository": "https://github.com/kuyio/vscode-orb",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Programming Languages"
],
"extensionDependencies": [
"vscode.html-language-features"
],
"main": "./src/index.js",
"activationEvents": [
"onLanguage:ruby-orb",
"onCommand:ruby-orb.cycleTags"
],
"contributes": {
"languages": [
{
"id": "ruby-orb",
"aliases": [
"ORB"
],
"extensions": [
".orb"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/file-icon-light.png",
"dark": "./images/file-icon-dark.png"
}
}
],
"grammars": [
{
"language": "ruby-orb",
"scopeName": "text.html.ruby-orb",
"path": "./syntaxes/ruby-orb.tmLanguage.json"
},
{
"scopeName": "text.html.ruby-orb.injection",
"path": "./syntaxes/ruby-orb-injection.tmLanguage.json",
"injectTo": ["source.ruby"],
"embeddedLanguages": {
"text.html.ruby-orb": "ruby-orb"
}
}
],
"htmlLanguageParticipants": [
{
"languageId": "ruby-orb",
"autoInsert": true
}
],
"commands": [
{
"command": "ruby-orb.cycleTags",
"title": "Cycle between ORB tag blocks"
}
],
"keybindings": [
{
"command": "ruby-orb.cycleTags",
"key": "ctrl+shift+/",
"when": "editorTextFocus && editorLangId =~ /ruby-orb/"
},
{
"command": "ruby-orb.cycleTags",
"key": "cmd+shift+/",
"when": "isMac && editorTextFocus && editorLangId =~ /ruby-orb/"
}
],
"snippets": [
{
"language": "ruby-orb",
"path": "./snippets/ruby-orb-snippets.json"
}
]
}
}