-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathx-perl-hilite
executable file
·62 lines (57 loc) · 1.7 KB
/
x-perl-hilite
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env perl
#
# hilite.pl - perl code colorizer on an ANSI terminal (xterm / putty session)
# place this script in your path and make executable, e.g.
# $ cp hilite.pl ~/bin/hilite
# $ chmod 755 ~/bin/hilite
# then run it to colorize text output that contains perl, e.g.
# $ svn diff /some/path/MyModule.pm | hilite
# and you get syntax colored text
#
# Source: http://blogs.perl.org/users/peter_edwards/2010/08/colorized-perl-code-snippets-on-ansi-terminals.html
use strict;
use warnings;
use utf8; # ار
use open ':utf8';
use Syntax::Highlight::Engine::Kate;
use Term::ANSIColor qw(:constants);
use IO::File;
my $hl = new Syntax::Highlight::Engine::Kate(
language => 'Perl',
substitutions => {},
format_table => {
Alert => [RED, RESET],
BaseN => [RED, RESET],
BString => [YELLOW, RESET],
Char => [YELLOW, RESET],
Comment => [CYAN, RESET],
DataType => [GREEN, RESET],
DecVal => [RED, RESET],
Error => [RED, RESET],
Float => [BRIGHT_RED, RESET],
Function => [MAGENTA, RESET],
IString => [MAGENTA, RESET],
Keyword => [YELLOW, RESET],
Normal => ["", ""],
Operator => [BRIGHT_GREEN, RESET],
Others => [MAGENTA, RESET],
RegionMarker => [ON_GREEN, RESET],
Reserved => [BLACK ON_BLUE, RESET],
String => [MAGENTA, RESET],
Variable => [BRIGHT_GREEN, RESET],
Warning => [RED, RESET],
},
);
my $fh;
my $file = shift @ARGV;
if ( !$file || $file eq '-' ) {
binmode STDIN;
$fh = \*STDIN;
}
else {
$fh = IO::File->new($file)
|| die "Cannot open file: $file: $!";
}
while ( my $line = <$fh> ) {
print $hl->highlightText($line);
};