18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
scope: punctuation.definition.comment
push: line_comment
# Numbers
- match: '\b(-)?[0-9.]+\b'
scope: constant.numeric
# Keywords are if, else.
# Note that blackslashes don't need to be escaped within single quoted
# strings in YAML. When using single quoted strings, only single quotes
# need to be escaped: this is done by using two single quotes next to each
# other.
- match: '\b(?:if|else|and|or|not|in)\b'
scope: keyword.python
|
>
>
>
>
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
scope: punctuation.definition.comment
push: line_comment
# Numbers
- match: '\b(-)?[0-9.]+\b'
scope: constant.numeric
# Bookmarks
- match: '^!!.*|^\[\+\+\].*'
scope: bookmark
# Keywords are if, else.
# Note that blackslashes don't need to be escaped within single quoted
# strings in YAML. When using single quoted strings, only single quotes
# need to be escaped: this is done by using two single quotes next to each
# other.
- match: '\b(?:if|else|and|or|not|in)\b'
scope: keyword.python
|