Skip to content

Commit

Permalink
improved Perl code on non-ascii output
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadam committed Feb 26, 2014
1 parent d7dbc30 commit b04b0a6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ide/plugins/perl-format/src/content/formats/perl-rc.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,11 @@ this.options = {
header:
'use strict;\n' +
'use warnings;\n' +
'use utf8;\n' +
'BEGIN {\n' +
' binmode STDOUT, ":utf8";\n' +
' binmode STDERR, ":utf8";\n' +
'}\n' +
'use Time::HiRes qw(sleep);\n' +
'use Test::WWW::Selenium;\n' +
'use Test::More "no_plan";\n' +
Expand Down

0 comments on commit b04b0a6

Please sign in to comment.