Skip to content

Commit

Permalink
Update src/lexers/julia.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Shuhei Kadowaki <[email protected]>
  • Loading branch information
staticfloat and aviatesk authored Jun 3, 2024
1 parent ed96fad commit 1bad9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lexers/julia.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ julia_is_triple_string_macro(ctx::Context) = julia_is_string_macro(ctx, 3)

# Julia Script Lexer.
@lexer JuliaLexer let
keywords = [kw.keyword for kw in REPL.REPLCompletions.sorted_keywords]
keywords = copy(REPL.REPLCompletions.sorted_keywords)
char_regex = [
raw"'(\\.|\\[0-7]{1,3}|\\x[a-fA-F0-9]{1,3}|",
raw"\\u[a-fA-F0-9]{1,4}|\\U[a-fA-F0-9]{1,6}|",
Expand Down

0 comments on commit 1bad9ad

Please sign in to comment.