-
Notifications
You must be signed in to change notification settings - Fork 0
/
syntax.json
26 lines (26 loc) · 1.01 KB
/
syntax.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
[
{
"extensions":[".go"],
"keywords":["bool","uint","import","package","const","var","func","map","string","byte","struct","int","any","error","type","continue","break","append","if","len","return","else"],
"stringCharacters":["'", "\"","`"],
"commentCharacter":"//",
"highlightStrings":true,
"highlightNumbers":true
},
{
"extensions": [".py"],
"keywords": ["False", "None", "True", "and", "as", "assert", "async", "await", "break", "class", "continue", "def", "del", "elif", "else", "except", "finally", "for", "from", "global", "if", "import", "in", "is", "lambda", "nonlocal", "not", "or", "pass", "raise", "return", "try", "while", "with", "yield"],
"stringCharacters": [],
"commentCharacter": "#",
"highlightStrings": true,
"highlightNumbers": true
},
{
"extensions":[".sh"],
"keywords":["if", "fi", "elif", "case", "esac", "then"],
"stringCharacters":["'", "\"","`"],
"commentCharacter":"#",
"highlightStrings":true,
"highlightNumbers":true
}
]