Skip to content

Commit bb959d0

Browse files
author
MattDMo
committed
Fixed constant.numeric.integer names from #60
1 parent ffc5ffa commit bb959d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PythonImproved.YAML-tmLanguage

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ patterns:
2626
name: constant.other.allcaps.python
2727
match: \b([[:upper:]_][[:upper:][:digit:]_]*)\b(?![\.\(\'\"])
2828

29-
- name: constant.numeric.integer.long.hexadecimal.python
29+
- name: constant.numeric.integer.hexadecimal.long.python
3030
match: \b(?i:(0x\h+)L)
3131

3232
- name: constant.numeric.integer.hexadecimal.python
3333
match: \b(?i:(0x\h+))
3434

35-
- name: constant.numeric.integer.long.binary.python
35+
- name: constant.numeric.integer.binary.long.python
3636
match: \b(?i:(0b[01]+)L)
3737

3838
- name: constant.numeric.integer.binary.python
3939
match: \b(?i:(0b[01]+))
4040

41-
- name: constant.numeric.integer.long.octal.python
41+
- name: constant.numeric.integer.octal.long.python
4242
match: \b(?i:(0[o]?[0-7]+)L)
4343

4444
- name: constant.numeric.integer.octal.python

0 commit comments

Comments
 (0)