Padre::Plugin::Perl6::Perl6StdColorizer - Padre::Plugin::Perl6::Perl6StdColorizer documentation


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

Index


Code Index:

AUTHOR

Top

Ahmad M. Zawawi <ahmad.zawawi at gmail.com>

Gabor Szabo http://szabgab.com/

COPYRIGHT AND LICENSE

Top


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

package Padre::Plugin::Perl6::Perl6StdColorizer;

use strict;
use warnings;

our $VERSION = '0.63';

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

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

1;

__END__