-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtree-sitter.json
47 lines (47 loc) · 1.06 KB
/
tree-sitter.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
{
"grammars": [
{
"name": "fsharp",
"camelcase": "FSharp",
"scope": "source.fsharp",
"path": "fsharp",
"file-types": ["fs", "fsx"],
"highlights": "queries/highlights.scm",
"injections": "queries/injections.scm",
"tags": "queries/tags.scm",
"injection-regex": "^fsharp$"
},
{
"name": "fsharp_signature",
"camelcase": "FSharpSignature",
"scope": "source.fsharp.signature",
"path": "fsharp_signature",
"file-types": ["fsi"],
"highlights": "queries/highlights.scm",
"injections": "queries/injections.scm",
"tags": "queries/tags.scm",
"injection-regex": "^fsharp_signature$"
}
],
"metadata": {
"version": "0.1.0",
"license": "MIT",
"description": "",
"authors": [
{
"name": "Nikolaj Sidorenco"
}
],
"links": {
"repository": "https://github.com/tree-sitter/tree-sitter-fsharp"
}
},
"bindings": {
"c": true,
"go": true,
"node": true,
"python": true,
"rust": true,
"swift": true
}
}