use prism-tomorrow.css

This commit is contained in:
CyC2018
2018-12-19 14:09:39 +08:00
parent 0f00bcacaf
commit e9e604e6a7
1747 changed files with 100462 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
"
" Foobar
----------------------------------------------------
[
["comment", "\""],
["comment", "\" Foobar"]
]
----------------------------------------------------
Checks for comments.

View File

@ -0,0 +1,13 @@
has("mac")
exists("s:call_count")
----------------------------------------------------
[
["function", "has"], ["punctuation", "("], ["string", "\"mac\""], ["punctuation", ")"],
["function", "exists"], ["punctuation", "("], ["string", "\"s:call_count\""], ["punctuation", ")"]
]
----------------------------------------------------
Checks for functions.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,15 @@
0xBadFace
42
3.14159
----------------------------------------------------
[
["number", "0xBadFace"],
["number", "42"],
["number", "3.14159"]
]
----------------------------------------------------
Checks for numbers.

View File

@ -0,0 +1,37 @@
|| &&
? * / %
+ +=
- -=
. .=
= == =~
==# =~# ==? =~?
! != !~
!=# !~# !=? !~?
< <=
<# <=# <? <=?
> >=
># >=# >? >=?
is isnot
----------------------------------------------------
[
["operator", "||"], ["operator", "&&"],
["operator", "?"], ["operator", "*"], ["operator", "/"], ["operator", "%"],
["operator", "+"], ["operator", "+="],
["operator", "-"], ["operator", "-="],
["operator", "."], ["operator", ".="],
["operator", "="], ["operator", "=="], ["operator", "=~"],
["operator", "==#"], ["operator", "=~#"], ["operator", "==?"], ["operator", "=~?"],
["operator", "!"], ["operator", "!="], ["operator", "!~"],
["operator", "!=#"], ["operator", "!~#"], ["operator", "!=?"], ["operator", "!~?"],
["operator", "<"], ["operator", "<="],
["operator", "<#"], ["operator", "<=#"], ["operator", "<?"], ["operator", "<=?"],
["operator", ">"], ["operator", ">="],
["operator", ">#"], ["operator", ">=#"], ["operator", ">?"], ["operator", ">=?"],
["operator", "is"], ["operator", "isnot"]
]
----------------------------------------------------
Checks for all operators.

View File

@ -0,0 +1,19 @@
""
"Fo\"ob'ar"
''
'\'
'Foo''bar'
----------------------------------------------------
[
["string", "\"\""],
["string", "\"Fo\\\"ob'ar\""],
["string", "''"],
["string", "'\\'"],
["string", "'Foo''bar'"]
]
----------------------------------------------------
Checks for strings.