diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-22 16:18:42 -0700 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2013-06-22 16:18:42 -0700 |
commit | 1e330f16c21c45eff375ba3b12f966c76ba0b393 (patch) | |
tree | 3210223dcdbbb23b0b63cd8803b080e52bab2400 /lib/coderay/token_kinds.rb | |
parent | 546b489e4b3856d361a480de5f1f02cb55c7f002 (diff) | |
parent | 90c401c9001e0a670360a55d1189e9f814ae7592 (diff) | |
download | coderay-1e330f16c21c45eff375ba3b12f966c76ba0b393.tar.gz |
Merge pull request #141 from rubychan/lua-scanner
Lua scanner, tweaked (finally!)
Diffstat (limited to 'lib/coderay/token_kinds.rb')
-rwxr-xr-x | lib/coderay/token_kinds.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/coderay/token_kinds.rb b/lib/coderay/token_kinds.rb index 9154658..9137a49 100755 --- a/lib/coderay/token_kinds.rb +++ b/lib/coderay/token_kinds.rb @@ -51,6 +51,7 @@ module CodeRay :keyword => 'keyword', # reserved word that's actually implemented; most scanners :label => 'label', # C, PHP :local_variable => 'local-variable', # local and magic variables; some scanners + :map => 'map', # Lua tables :modifier => 'modifier', # used inside on strings; lots of scanners :namespace => 'namespace', # Clojure, Java, Taskpaper :octal => 'octal', # lots of scanners |