Skip to content

Commit e8314c6

Browse files
committed
Fix / Workaround for: Error in regex: target of repeat operator is invalid in regex
Fixes: MagicStack#242 SublimeText 4 (as of build 4121) evaluates this valid regex: `\n?` to this invalid one: `$?` hence causing the following error: ``` error: Error loading syntax file "Packages/<Path_To>.tmLanguage": Error in regex: target of repeat operator is invalid in regex ``` This commit is a workaround to fix this problem.
1 parent 2802ded commit e8314c6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

grammars/MagicPython.tmLanguage

+7-7
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ E.g. "arr[idx](args)"
855855
<array>
856856
<dict>
857857
<key>match</key>
858-
<string>(\\)\s*(\S.*$\n?)</string>
858+
<string>(\\)\s*(\S.*$\&x6e;?)</string>
859859
<key>captures</key>
860860
<dict>
861861
<key>1</key>
@@ -872,7 +872,7 @@ E.g. "arr[idx](args)"
872872
</dict>
873873
<dict>
874874
<key>begin</key>
875-
<string>(\\)\s*$\n?</string>
875+
<string>(\\)\s*$\&x6e;?</string>
876876
<key>end</key>
877877
<string>(?x)
878878
(?=^\s*$)
@@ -1384,7 +1384,7 @@ E.g. "arr[idx](args)"
13841384
<key>comment</key>
13851385
<string>it is illegal to have a multiline brace inside a single-line string</string>
13861386
<key>begin</key>
1387-
<string>(\{)(?=[^\n}]*$\n?)</string>
1387+
<string>(\{)(?=[^\n}]*$\&x6e;?)</string>
13881388
<key>end</key>
13891389
<string>(\})|(?=\n)</string>
13901390
<key>beginCaptures</key>
@@ -8181,7 +8181,7 @@ indirectly through syntactic constructs
81818181
81828182
The guard for newlines has to be separate from the
81838183
lookahead because of special $ matching rule.)
8184-
($\n?)
8184+
($\&x6e;?)
81858185
|
81868186
(?=[\\\}\{]|(['"])|((?&lt;!\\)\n))
81878187
)
@@ -8204,7 +8204,7 @@ indirectly through syntactic constructs
82048204
82058205
The guard for newlines has to be separate from the
82068206
lookahead because of special $ matching rule.)
8207-
($\n?)
8207+
($\&x6e;?)
82088208
|
82098209
(?=[\\\}\{]|(['"])|((?&lt;!\\)\n))
82108210
)
@@ -8553,7 +8553,7 @@ indirectly through syntactic constructs
85538553
85548554
The guard for newlines has to be separate from the
85558555
lookahead because of special $ matching rule.)
8556-
($\n?)
8556+
($\&x6e;?)
85578557
|
85588558
(?=[\\\}\{]|'''|""")
85598559
)
@@ -8576,7 +8576,7 @@ indirectly through syntactic constructs
85768576
85778577
The guard for newlines has to be separate from the
85788578
lookahead because of special $ matching rule.)
8579-
($\n?)
8579+
($\&x6e;?)
85808580
|
85818581
(?=[\\\}\{]|'''|""")
85828582
)

0 commit comments

Comments
 (0)