Padre::Plugin::Perl6::StdColorizer - Perl 6 Colorizer


Padre-Plugin-Perl6 documentation Contained in the Padre-Plugin-Perl6 distribution.

Index


Code Index:

NAME

Top

Padre::Plugin::Perl6::StdColorizer - Perl 6 Colorizer

VERSION

Top

version 0.71

AUTHORS

Top

COPYRIGHT AND LICENSE

Top


Padre-Plugin-Perl6 documentation Contained in the Padre-Plugin-Perl6 distribution.

package Padre::Plugin::Perl6::StdColorizer;
BEGIN {
  $Padre::Plugin::Perl6::StdColorizer::VERSION = '0.71';
}

# ABSTRACT: Perl 6 Colorizer

use strict;
use warnings;

use Padre::Plugin::Perl6::Colorizer ();
our @ISA = ('Padre::Plugin::Perl6::Colorizer');

sub colorize {
	my $self = shift;
	$Padre::Plugin::Perl6::Colorizer::colorizer = 'STD';
	$self->SUPER::colorize(@_);
}

1;

__END__