Skip to content

Commit

Permalink
Remove redundant lookbehind (#27)
Browse files Browse the repository at this point in the history
This commit removes not required lookbehind `(?<=\@)` in `angular_blocks`
variable, which just causes incompatibility with ST's custom sregex engine.
  • Loading branch information
deathaxe authored Oct 27, 2024
1 parent a2dc54a commit 3184b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NgxHTML.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
extends: Packages/HTML/HTML.sublime-syntax

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

contexts:
main:
Expand Down

0 comments on commit 3184b01

Please sign in to comment.