Perl5-IDEA icon indicating copy to clipboard operation
Perl5-IDEA copied to clipboard

Perl5 plugins for IntelliJ IDEA

Results 267 Perl5-IDEA issues
Sort by recently updated
recently updated
newest added

[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 ![Screenshot](https://i.imgur.com/5THNsBD.png) 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"; ```...

Bug
References & Resolution
Exporter

It hit me many times everytime I do `File` -> `New` -> `Perl5 File` I accidentally create a module with `.PM` extension instead of a script. ![Perl script](https://i.imgur.com/QIZbltt.png) I think...

Question
File Templates
Usability problem

To affect `Reformat Code` (Ctrl+Alt+L) ![Space after backslash](https://i.imgur.com/hqMwqB3.png) And probably for other **unary operators** as well.

Formatting

# 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...

Bug
Execution
Perlbrew

**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...

Project structure
Usability problem
Carton

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:...

Bug
Debugger
Gateway

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...

Deparse
Enchancement

Feels like this was not an issue before. In 213 test takes around 3 secs and real test is here: ![image](https://user-images.githubusercontent.com/2811330/165166828-eec41d64-5112-44d4-b5fa-9ee27afce435.png) In 221 test takes 22 secs and takes almost...

Performance

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...

Inspections
Feature