Skip to content

Commit

Permalink
Fix highlighting of angle bracket work quoting after for
Browse files Browse the repository at this point in the history
Fixes Issue #37
  • Loading branch information
samcv committed Jan 1, 2017
1 parent 4074dca commit 4913da8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v1.13.3
* Allow angle bracket multi-line quoting directly after the `for` keyword. Fixes Issue #37

# v1.13.2
* Add support for the assignment operator `:=`
* Highlight the `throws` method/routine
Expand Down
2 changes: 1 addition & 1 deletion grammars/perl6fe.cson
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@
'name': 'storage.modifier.declarator.perl6fe'
}
{
'begin': '(?x) (?<= = ) \\s* ( < )'
'begin': '(?x) (?<= = | for ) \\s* ( < )'
'beginCaptures':
'1':
'name': 'span.keyword.operator.array.words.perl6fe'
Expand Down

0 comments on commit 4913da8

Please sign in to comment.