File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -156,14 +156,14 @@ for the Elixir programming language."
156156 (defconst elixir-rx-constituents
157157 `(
158158 (string-delimiter . ,(rx (and
159- ; ; Match even number of backslashes.
160- (or (not (any ?\\ ?\' ?\" )) point
161- ; ; Quotes might be preceded by a escaped quote.
162- (and (or (not (any ?\\ )) point) ?\\
163- (* ?\\ ?\\ ) (any ?\' ?\" )))
164- (* ?\\ ?\\ )
165- ; ; Match single or triple quotes of any kind.
166- (group (or " \" " " \"\"\" " " '" " '''" )))))
159+ ; ; Match even number of backslashes.
160+ (or (not (any ?\\ ?\' ?\" )) point
161+ ; ; Quotes might be preceded by escaped quote
162+ (and (or (not (any ?\\ )) point) ?\\
163+ (* ?\\ ?\\ ) (any ?\' ?\" )))
164+ (* ?\\ ?\\ )
165+ ; ; Match single or triple quotes of any kind.
166+ (group (or " \" " " \"\"\" " " '" " '''" )))))
167167 (atoms . ,(rx " :"
168168 (or
169169 (and
@@ -346,7 +346,7 @@ is used to limit the scan."
346346 t )
347347 (elixir-match-interpolation limit))))))
348348
349-
349+
350350(defconst elixir-font-lock-keywords
351351 `(
352352 ; ; String interpolation
You can’t perform that action at this time.
0 commit comments