-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.9 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vscode-apl-language",
"displayName": "APL Language",
"description": "Basic APL language support (syntax, snippets)",
"version": "0.0.7",
"publisher": "OptimaSystems",
"author": {
"email": "[email protected]",
"name": "Gilgamesh Athoraya",
"url": "https://github.com/e9gille"
},
"licenses": [
{
"type": "ISC"
},
{
"type": "MIT"
}
],
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/optimasystems/vscode-apl-language.git"
},
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"apl",
"dyalog"
],
"extensionDependencies": ["vscode.json"],
"contributes": {
"languages": [
{
"id": "apl",
"aliases": [
"APL",
"dyalog"
],
"extensions": [
".apl",
".apla",
".aplc",
".aplf",
".apli",
".apln",
".aplo",
".dyalog",
".dyapp",
".mipage"
],
"firstLine": "[⌶-⍺]|^\\#!.*(?:\\s|\\/|(?<=!)\\b)(?:gnu[-._]?apl|aplx?|dyalog)(?:$|\\s)|-\\*-(?:\\s*(?=[^:;\\s]+\\s*-\\*-)|(?:.*?[;\\s]|(?<=-\\*-))mode\\s*:\\s*)apl(?=[\\s;]|(?<![-*])-\\*-).*?-\\*-|(?:(?:\\s|^)vi(?:m[<=>]?\\d+|m)?|\\sex)(?=:(?=\\s*set?\\s[^\\n:]+:)|:(?!\\s* set?\\s))(?:(?:\\s|\\s*:\\s*)\\w*(?:\\s*=(?:[^\\n\\\\\\s]|\\\\.)*)?)*[\\s:](?:filetype|ft|syntax)\\s*=apl(?=\\s|:|$)",
"configuration": "./language-configuration.json"
},
{
"id": "json",
"filenames": ["acre.config"]
}
],
"configurationDefaults": {
"[apl]": {
"editor.wordBasedSuggestions": false,
"editor.wordSeparators": "←+-×÷*⍟⌹○!?|⌈⌊⊥⊤⊣⊢=≠≤<>≥≡≢∧∨⍲⍱↑↓⊂⊃⌷⍋⍒⍳⍷∪∩∊~/\\⌿⍀,⍪⍴⌽⊖⍉¨⍨⍣.∘⍤⍞⎕⍠⌸⍎⍕⋄⍝→⍵⍺∇&¯⍬⌶¤∥∆⍙⍥⍫Á⍸⊆@⌺()[]{}%£#;:\"`$^'",
"editor.foldingStrategy": "auto",
"editor.fontFamily": "APL385 Unicode, Consolas, 'Courier New', monospace"
}
},
"grammars": [{
"language": "apl",
"scopeName": "source.apl",
"path": "./syntaxes/apl.tmLanguage.json"
}],
"snippets": [{
"language": "apl",
"path": "./snippets/apl.snippets.json"
}],
"jsonValidation": [
{
"fileMatch": "acre.config",
"url": "./schemas/acre.config.json"
}
]
}
}