@@ -156,7 +156,7 @@ contexts:
156
156
- include : escaped_or_interpolated
157
157
158
158
heredoc_regex_interpolated :
159
- - match : (""")\s* (.*)\n
159
+ - match : (""")(.*)\n
160
160
captures :
161
161
1 : punctuation.definition.string.begin.elixir
162
162
2 : invalid.illegal.opening-heredoc.elixir
@@ -170,7 +170,7 @@ contexts:
170
170
- match : (?=^.*?""")
171
171
pop : true
172
172
173
- - match : (''')\s* (.*)\n
173
+ - match : (''')(.*)\n
174
174
captures :
175
175
1 : punctuation.definition.string.begin.elixir
176
176
2 : invalid.illegal.opening-heredoc.elixir
@@ -185,7 +185,7 @@ contexts:
185
185
pop : true
186
186
187
187
heredoc_regex_raw :
188
- - match : (""")\s* (.*)\n
188
+ - match : (""")(.*)\n
189
189
comment : Triple-quoted heredocs
190
190
captures :
191
191
1 : punctuation.definition.string.begin.elixir
@@ -199,7 +199,7 @@ contexts:
199
199
- match : (?=^.*?""")
200
200
pop : true
201
201
202
- - match : (''')\s* (.*)\n
202
+ - match : (''')(.*)\n
203
203
comment : Triple-quoted heredocs
204
204
captures :
205
205
1 : punctuation.definition.string.begin.elixir
@@ -214,7 +214,7 @@ contexts:
214
214
pop : true
215
215
216
216
heredoc_string_interpolated :
217
- - match : (""")\s* (.*)\n
217
+ - match : (""")(.*)\n
218
218
comment : Triple-quoted heredocs
219
219
captures :
220
220
1 : punctuation.definition.string.begin.elixir
@@ -224,7 +224,7 @@ contexts:
224
224
- include : escaped_or_interpolated
225
225
- include : heredoc_string_closing_double
226
226
227
- - match : (''')\s* (.*)\n
227
+ - match : (''')(.*)\n
228
228
comment : Triple-quoted heredocs
229
229
captures :
230
230
1 : punctuation.definition.string.begin.elixir
@@ -235,7 +235,7 @@ contexts:
235
235
- include : heredoc_string_closing_single
236
236
237
237
heredoc_string_raw :
238
- - match : (""")\s* (.*)\n
238
+ - match : (""")(.*)\n
239
239
comment : Triple-quoted heredocs
240
240
captures :
241
241
1 : punctuation.definition.string.begin.elixir
@@ -244,7 +244,7 @@ contexts:
244
244
- meta_scope : meta.string.elixir string.quoted.triple.double.elixir
245
245
- include : heredoc_string_closing_double
246
246
247
- - match : (''')\s* (.*)\n
247
+ - match : (''')(.*)\n
248
248
comment : Triple-quoted heredocs
249
249
captures :
250
250
1 : punctuation.definition.string.begin.elixir
0 commit comments