Skip to content

Commit

Permalink
Remove Ul/ul number formats
Browse files Browse the repository at this point in the history
These do not exist in Scala
  • Loading branch information
nicolasstucki committed Jul 10, 2020
1 parent 46b8880 commit 5d46fc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/typescript/Scala.tmLanguage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ export const scalaTmLanguage: TmLanguage = {
name: 'constant.numeric.scala'
},
{
match: '\\b(([0-9][0-9_]*(\\.[0-9][0-9_]*)?)([eE](\\+|-)?[0-9][0-9_]*)?|[0-9][0-9_]*)([LlFfDd]|UL|ul)?\\b',
match: '\\b(([0-9][0-9_]*(\\.[0-9][0-9_]*)?)([eE](\\+|-)?[0-9][0-9_]*)?|[0-9][0-9_]*)[LlFfDd]?\\b',
name: 'constant.numeric.scala'
},
{
match: '(\\.[0-9][0-9_]*)([eE](\\+|-)?[0-9][0-9_]*)?([LlFfDd]|UL|ul)?\\b',
match: '(\\.[0-9][0-9_]*)([eE](\\+|-)?[0-9][0-9_]*)?[LlFfDd]?\\b',
name: 'constant.numeric.scala'
},
{
Expand Down

0 comments on commit 5d46fc7

Please sign in to comment.