diff options
author | Kornelius Kalnbach <murphy@rubychan.de> | 2012-07-23 15:36:03 +0200 |
---|---|---|
committer | Kornelius Kalnbach <murphy@rubychan.de> | 2012-07-23 15:36:03 +0200 |
commit | f4dbdb3030a9507bdb02bdcc66f674913860a822 (patch) | |
tree | 3cf9ce20511c2c52ab630c637d60b41a48503f1e | |
parent | bc96f76711002cdced6d82b079860e3d8eefb46f (diff) | |
download | coderay-f4dbdb3030a9507bdb02bdcc66f674913860a822.tar.gz |
add :string.:char, remove :regexp.:function color from terminal encode (GH #29)
-rw-r--r-- | lib/coderay/encoders/terminal.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/encoders/terminal.rb b/lib/coderay/encoders/terminal.rb index 005032d..a0ceb3c 100644 --- a/lib/coderay/encoders/terminal.rb +++ b/lib/coderay/encoders/terminal.rb @@ -62,7 +62,6 @@ module CodeRay :content => '31', :delimiter => '1;29', :modifier => '35', - :function => '1;29' }, :reserved => '1;31', :shell => { @@ -75,6 +74,7 @@ module CodeRay :modifier => '1;32', :escape => '1;36', :delimiter => '1;32', + :char => '1;36', }, :symbol => '1;32', :tag => '1;34', |