-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.92 KB
/
package.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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "simple-ruby-erb",
"displayName": "Simple Ruby ERB",
"description": "Provides simple Ruby and ERB language, code snippets and ERB tag helper support for Visual Studio Code without messing with linting or debugging",
"version": "0.2.0",
"publisher": "vortizhe",
"author": {
"name": "Victor Ortiz Heredia"
},
"engines": {
"vscode": "^1.6.0"
},
"license": "MIT",
"categories": [
"Languages",
"Snippets"
],
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/vortizhe/vscode-ruby-erb.git"
},
"bugs": "https://github.com/vortizhe/vscode-ruby-erb/issues",
"activationEvents": [
"onLanguage:ruby",
"onLanguage:erb"
],
"main": "./ruby_erb.js",
"contributes": {
"languages": [{
"id": "ruby",
"aliases": ["Ruby", "ruby"],
"extensions": [".rb", ".rbx", ".rjs", "Rakefile", "rake", ".ru", "Gemfile", "Gemfile.lock", ".gemspec", ".irbrc", "Capfile", "Guardfile"],
"configuration": "./language_configuration.ruby.json"
}, {
"id": "erb",
"aliases": ["erb", "Encapsulated Ruby", "HTML Ruby"],
"extensions": [".erb", ".rhtml", ".rhtm"],
"configuration": "./language_configuration.erb.json"
}],
"grammars": [{
"language": "ruby",
"scopeName": "source.ruby",
"path": "./syntaxes/ruby.tmLanguage"
}, {
"language": "erb",
"scopeName": "text.html.erb",
"path": "./syntaxes/erb.tmLanguage"
}],
"commands": [{
"command": "erb.toggleTags",
"title": "Toggle between ERB Tag blocks"
}],
"keybindings": [{
"command": "erb.toggleTags",
"key": "ctrl+shift+`",
"when": "editorTextFocus && editorLangId == erb"
}],
"snippets": [{
"language": "ruby",
"path": "./snippets/ruby.json"
}, {
"language": "erb",
"path": "./snippets/erb.json"
}]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
}
}