Sha256: 270a55135a53d9ec0f6b279a41f8a4c985293e5c6d516f84d768ca777e34ae06
Contents?: true
Size: 431 Bytes
Versions: 79
Compression:
Stored size: 431 Bytes
Contents
class Pry class Command::ToggleColor < Pry::ClassCommand match 'toggle-color' group 'Misc' description 'Toggle syntax highlighting.' banner <<-'BANNER' Usage: toggle-color Toggle syntax highlighting. BANNER def process Pry.color = !Pry.color output.puts "Syntax highlighting #{Pry.color ? "on" : "off"}" end end Pry::Commands.add_command(Pry::Command::ToggleColor) end
Version data entries
79 entries across 79 versions & 5 rubygems