This commit is contained in:
John Mumm 2013-10-10 15:25:08 -04:00
parent 136fea4950
commit 6518995135
1 changed files with 2 additions and 9 deletions

View File

@ -40,13 +40,6 @@
"comment": "Comment line"
},
{
"begin": "(\/\\*)",
"end": "(\\*\/)",
"name": "comment.block.asm",
"comment": "C-style comment block (AVR ASM 2.0 only)"
},
{
"match": "(^|\\s)\"[\\w\\s\\W]*\"($|\\s)",
"name": "string.asm",
@ -66,13 +59,13 @@
},
{
"match": "\\%(0b(0|1)+)\\b",
"match": "\\b%(0b(0|1)+)\\b",
"name": "constant.numeric.asm",
"comment": "Bin number constant"
},
{
"match": "\\#(0|[1-9]\\d+)\\b",
"match": "\\b#(0|[1-9]\\d+)\\b",
"name": "constant.numeric.asm",
"comment": "Dec number constant"
}