diff options
author | Mike Nolta <mike@nolta.net> | 2013-01-21 14:42:42 -0500 |
---|---|---|
committer | Mike Nolta <mike@nolta.net> | 2013-01-21 14:42:42 -0500 |
commit | 642059317f66ea52cecd7ecf881896c353bcc3ef (patch) | |
tree | bae2b98ef4929c2eee0f3558eb28246b451436ff | |
parent | 7d9f01a9be7f5cb2e1162b7bf890597cb3e68094 (diff) | |
download | pygments-642059317f66ea52cecd7ecf881896c353bcc3ef.tar.gz |
JuliaLexer: add baremodule, importall, using keywords
-rw-r--r-- | pygments/lexers/math.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py index f4bb1127..537c6d0e 100644 --- a/pygments/lexers/math.py +++ b/pygments/lexers/math.py @@ -58,9 +58,9 @@ class JuliaLexer(RegexLexer): # keywords (r'(begin|while|for|in|return|break|continue|' r'macro|quote|let|if|elseif|else|try|catch|end|' - r'bitstype|ccall|do)\b', Keyword), + r'bitstype|ccall|do|using|module|import|export|' + r'importall|baremodule)\b', Keyword), (r'(local|global|const)\b', Keyword.Declaration), - (r'(module|import|export)\b', Keyword.Reserved), (r'(Bool|Int|Int8|Int16|Int32|Int64|Uint|Uint8|Uint16|Uint32|Uint64' r'|Float32|Float64|Complex64|Complex128|Any|Nothing|None)\b', Keyword.Type), |