This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from Ingramz/wl-tags-off-by-one
Fix insertion of newline characters to the end of lines
- Loading branch information
Showing
9 changed files
with
2,240 additions
and
642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
'scopeName': 'abcabx' | ||
'patterns': [ | ||
{ | ||
'match': 'a(.+)c' | ||
'captures': | ||
'1': | ||
'patterns':[ | ||
{ | ||
'match': '[^c]+' | ||
'name': 'b' | ||
} | ||
] | ||
'name': 'abc' | ||
}, | ||
{ | ||
'match': 'a(.+)x' | ||
'captures': | ||
'1': | ||
'patterns':[ | ||
{ | ||
'match': '[^x]+' | ||
'name': 'up-to-x-outer' | ||
'captures': | ||
'0': | ||
'patterns':[ | ||
{ | ||
'match': '.+' | ||
'name': 'up-to-x-inner' | ||
} | ||
] | ||
} | ||
] | ||
'name': 'abx' | ||
} | ||
] |
Oops, something went wrong.