Skip to content

Commit

Permalink
Minor fix in constant regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
haneefdm committed Feb 14, 2020
1 parent 03bf581 commit 174f4b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntaxes/cortex-debug-disassembly.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{
"comment": "Numeric constant",
"name": "constant.numeric",
"match": "(0x[0-9A-F]+)|(#[0-9]+)"
"match": "(0x[0-9A-Fa-f]+)|(#[0-9]+)"
},
{
"comment": "Register",
Expand All @@ -28,4 +28,4 @@
"match": ";.*$"
}
]
}
}

0 comments on commit 174f4b8

Please sign in to comment.