use prism-tomorrow.css
This commit is contained in:
2289
docs/_style/prism-master/tests/languages/vim/builtin_feature.test
Normal file
2289
docs/_style/prism-master/tests/languages/vim/builtin_feature.test
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,13 @@
|
||||
"
|
||||
" Foobar
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["comment", "\""],
|
||||
["comment", "\" Foobar"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for comments.
|
@ -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.
|
1661
docs/_style/prism-master/tests/languages/vim/keyword_feature.test
Normal file
1661
docs/_style/prism-master/tests/languages/vim/keyword_feature.test
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,15 @@
|
||||
0xBadFace
|
||||
42
|
||||
3.14159
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["number", "0xBadFace"],
|
||||
["number", "42"],
|
||||
["number", "3.14159"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for numbers.
|
@ -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.
|
@ -0,0 +1,19 @@
|
||||
""
|
||||
"Fo\"ob'ar"
|
||||
''
|
||||
'\'
|
||||
'Foo''bar'
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["string", "\"\""],
|
||||
["string", "\"Fo\\\"ob'ar\""],
|
||||
["string", "''"],
|
||||
["string", "'\\'"],
|
||||
["string", "'Foo''bar'"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for strings.
|
Reference in New Issue
Block a user