Merge pull request #17 from michaellass/fix-operator-regex

Fix operator regex for ACME grammar (again)
This commit is contained in:
Matthew Callis 2020-01-27 12:36:47 -08:00 committed by GitHub
commit 6e4108ca91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -124,8 +124,8 @@ repository:
}
# Operators
{
match: '\!|\+|\-|\/|\|<<|>>|&|\||\^|=|<|>|\:'
name: 'keyword.operator'
match: '\\!|\\+|\\-|\\/|\\*|<<|>>|&|\\||\\^|=|<|>|\\:'
name: 'keyword.operator.acme'
}
# Operators II
{