update inbox list

This commit is contained in:
manhlab
2021-04-07 19:25:18 -04:00
parent fda7245f7c
commit 436de2efd6
8576 changed files with 1013325 additions and 3 deletions

View File

@@ -0,0 +1,83 @@
{
"aliases": [
"ml"
],
"keywords": {
"keyword": "abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while",
"built_in": "array bool char exn int list option order real ref string substring vector unit word",
"literal": "true false NONE SOME LESS EQUAL GREATER nil"
},
"illegal": "\\\/\\\/|>>",
"lexemes": "[a-z_]\\w*!?",
"contains": [
{
"className": "literal",
"begin": "\\[(\\|\\|)?\\]|\\(\\)",
"relevance": 0
},
{
"className": "comment",
"begin": "\\(\\*",
"end": "\\*\\)",
"contains": [
"self",
{
"begin": "\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\\b"
},
{
"className": "doctag",
"begin": "(?:TODO|FIXME|NOTE|BUG|XXX):",
"relevance": 0
}
]
},
{
"className": "symbol",
"begin": "'[A-Za-z_](?!')[\\w']*"
},
{
"className": "type",
"begin": "`[A-Z][\\w']*"
},
{
"className": "type",
"begin": "\\b[A-Z][\\w']*",
"relevance": 0
},
{
"begin": "[a-z_]\\w*'[\\w']*"
},
{
"className": "string",
"begin": "'",
"end": "'",
"illegal": "\\n",
"contains": [
{
"begin": "\\\\[\\s\\S]",
"relevance": 0
}
],
"relevance": 0
},
{
"className": "string",
"begin": "\"",
"end": "\"",
"illegal": null,
"contains": [
{
"$ref": "#contains.6.contains.0"
}
]
},
{
"className": "number",
"begin": "\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)",
"relevance": 0
},
{
"begin": "[-=]>"
}
]
}