Perl5-IDEA
Perl5-IDEA copied to clipboard
Perl5 plugins for IntelliJ IDEA
[printf](https://github.com/Perl/perl5/blob/blead/dist/IO/lib/IO/Handle.pm#L421) method is defined in [IO::Handle](https://perldoc.perl.org/IO::Handle#METHODS) module  I don't know if it's possible to add definition for filehandle OO methods, but that would prevent warnings from showing up. Thanks.
In the following code snippet: ``` #!/usr/bin/perl use strict; use warnings FATAL => 'all'; use boolean; $a = true; $b = false; print "a = $a, b = $b\n"; ```...
It hit me many times everytime I do `File` -> `New` -> `Perl5 File` I accidentally create a module with `.PM` extension instead of a script.  I think...
To affect `Reformat Code` (Ctrl+Alt+L)  And probably for other **unary operators** as well.
# System Information: * IDE name and version: * Pycharm 2021.3.2 (Community Edition) * Build #PC-213.6777.50, built on January 27, 2022 * Runtime version: 11.0.13+7-b1751.25 amd64 * VM: OpenJDK 64-Bit...
**IDE: WebStorm #WS-213.5744.224 Perl v5.34.0** I can choose to exclude or not exclude the `local/` directory that Carton creates, which contains all the CPAN dependencies of my project. If I...
When I try a remote Perl debugging session on a remote IDE (IntellIJ via Gateway), it now does connect properly in the latest EAP but it can't view variable values:...
After every start IDE i see warning about outadet XSubs declarations. When you try to regenerate, the process starts in the background and does not end. It is repeated in...
Feels like this was not an issue before. In 213 test takes around 3 secs and real test is here:  In 221 test takes 22 secs and takes almost...
Mutating elements of `@_` causes [mutating of passed parameters](https://perldoc.perl.org/perlsub#DESCRIPTION) and fails if passed parameter is RO. Inspection should show such problems. Example illustrating the issue: ```perl use strict; use warnings...