Skip to content

Commit

Permalink
[FJSX15] Make patterns non greedy
Browse files Browse the repository at this point in the history
  • Loading branch information
borela committed Jan 24, 2018
1 parent 7612f90 commit c67cf82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contexts:
- match: \)
scope: punctuation.definition.group.end.regexp.js.fjsx15
pop: true
- match: (?=\s*\S)
- match: (?=\S)
push: regex-content

meta:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contexts:
- match: \)
scope: punctuation.definition.group.assertion.end.regexp.js.fjsx15
pop: true
- match: (?=\s*\S)
- match: (?=\S)
push: regex-content

meta:
Expand Down

0 comments on commit c67cf82

Please sign in to comment.