diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-19 05:39:45 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2011-08-19 05:39:45 +0200 |
commit | 36531238fa4ef33f1792c6ea6de5e00dcadf018a (patch) | |
tree | cca387c2b27dc23d71dab6bd928e10fcdc6cd46b /lib/coderay/encoders/terminal.rb | |
parent | 5dd7ca65fdb90d6ffe53790abf1fe5a29a66675e (diff) | |
download | coderay-36531238fa4ef33f1792c6ea6de5e00dcadf018a.tar.gz |
pretty (longer) token class names; closes #347
Diffstat (limited to 'lib/coderay/encoders/terminal.rb')
-rw-r--r-- | lib/coderay/encoders/terminal.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/coderay/encoders/terminal.rb b/lib/coderay/encoders/terminal.rb index 860ea9c..15c8a52 100644 --- a/lib/coderay/encoders/terminal.rb +++ b/lib/coderay/encoders/terminal.rb @@ -22,7 +22,7 @@ module CodeRay :annotation => '35', :attribute_name => '33', :attribute_value => '31', - :bin => '1;35', + :binary => '1;35', :char => { :self => '36', :delimiter => '34' }, @@ -47,11 +47,10 @@ module CodeRay :hex => '1;36', :include => '33', :integer => '1;34', - :interpreted => '1;35', :key => '35', :label => '1;15', :local_variable => '33', - :oct => '1;35', + :octal => '1;35', :operator_name => '1;29', :predefined_constant => '1;36', :predefined_type => '1;30', @@ -79,7 +78,6 @@ module CodeRay }, :symbol => '1;32', :tag => '34', - :tag_special => ['34', '4'], :type => '1;34', :value => '36', :variable => '34', |