No commit activity in last 3 years
No release in over 3 years
This ripl plugin colorizes your stdout and stderr streams.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.2.8
 Project Readme

Description¶ ↑

This ripl plugin colorizes your stdout and stderr streams.

Install¶ ↑

Install the gem with:

gem install ripl-color_streams

Usage¶ ↑

Add to your ~/.riplrc

require 'ripl/color_streams'

The default colors are :dark_gray (1;30) and :light_red (1;31). You can change them like this:

Ripl.config[:color_streams_stdout] = :light_gray
Ripl.config[:color_streams_stderr] = :red

You can get a list of available colors with Ripl::ColorStreams::COLORS. It’s also possible to directly set an ansi-escape string as value.

J-_-L