Tagged Questions

Padre is an open source IDE for the Perl programming language written in Perl. It runs on Windows, Linux and Mac OSX.

learn more… | top users | synonyms

23
votes
20answers
803 views

What are the most important features of an IDE for Perl development?

As some of you might know I am the lead developer of Padre, the Perl IDE. In the first year of its development Padre became an acceptable text editor with some extra features for Perl development. ...
5
votes
1answer
66 views

perl Padre IDE standard input not working

I'm using padre 0.64 as perl IDE on windows vista The standard input command is not working , I tried the same code on the cmd line and it did work i.e my $k = <>; print $k; Is there a ...
4
votes
1answer
75 views

Is it possible with Padre to run and debug Perl scripts with a different Perl version?

Padre is a (open) IDE for Perl that does look promising. Since Padre is written in Perl itself, it is not apparent whether it's easily possible and practicable to run and debug Perl scripts in this ...
4
votes
6answers
1k views

What's a free Perl IDE for Windows?

I am looking for a Windows Perl IDE with debugger like Komodo but free. I have seen Eclipse+EPIC but I don't want to install Eclipse here . Padre doesn't have debugger built in.
3
votes
1answer
135 views

How do I change the UI language on Padre?

I've installed the current version of Padre with Strawberry Perl for 64-bit Windows. My OS is in Portuguese, and the UI language of the Padre IDE is now Portuguese. How do I override the default and ...
1
vote
1answer
82 views

How to Include source directory to Padre IDE?

How do you include source directory to Padre IDE for autocomplete and for running the script.
1
vote
2answers
208 views

How do I install a CPAN module site-wide while local::lib is present?

I've recently set up a new system and wanted to install Padre to check it out. The Padre install instructions specifically said to install local::lib, so I did so (although I've never had need of it ...
-2
votes
1answer
179 views

Perl Moose attribute not force type checking [closed]

I an using strawberry perl, Moose 2.0010 In the class: package Cat; use 5.010; use strict; use Moose; has 'name', is => 'ro', isa => 'Str', default => 'Beauty'; #has 'age', is ...