Skip to content

Commit 3184b01

Browse files
author
deathaxe
authored
Remove redundant lookbehind (#27)
This commit removes not required lookbehind `(?<=\@)` in `angular_blocks` variable, which just causes incompatibility with ST's custom sregex engine.
1 parent a2dc54a commit 3184b01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NgxHTML.sublime-syntax

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2
99
extends: Packages/HTML/HTML.sublime-syntax
1010

1111
variables:
12-
angular_blocks: (?<=\@)\b(?xi:for | if | else | else if | switch | case | empty | placeholder | defer | default | error | loading | let)\b
12+
angular_blocks: (?xi:for | if | else | else if | switch | case | empty | placeholder | defer | default | error | loading | let)\b
1313

1414
contexts:
1515
main:

0 commit comments

Comments
 (0)