IDE name and version, including build: GoLand 2022.3.4, Build #GO-223.8836.56, built on March 22, 2023
Perl5 plugin version: 2022.3.3
JRE version: Runtime version: 17.0.6+1-b653.34 amd64 (one that came with GoLand)
Your OS name and version: Ubuntu 20.04
When using a Docker setup of Perl per https://github.com/Camelcade/Perl5-IDEA/wiki/Docker-support, running tests etc Perl stuff appears to work just fine. But Tools -> Perl5 -> Reformat with Perl::Tidy is disabled, even though perltidy is installed in the container, and interpreter info has been refreshed in the IDE.
$ docker run --rm -it MY-PERL-IMAGE perltidy --version
This is perltidy, v20230309
Copyright 2000-2022, Steve Hancock
Perltidy is free software and may be copied under the terms of the GNU
General Public License, which is included in the distribution files.
Complete documentation for perltidy can be found using 'man perltidy'
or on the internet at http://perltidy.sourceforge.net.
$ docker run --rm -it MY-PERL-IMAGE perl -e 'use Perl::Tidy'
# No error
(In case it happens to matter, the default command of the above mentioned image is just an usage message like CMD echo "Run this image with an explicit command" && exit 1, I'll test without that in a sec.)
When using a Docker setup of Perl per https://github.com/Camelcade/Perl5-IDEA/wiki/Docker-support, running tests etc Perl stuff appears to work just fine. But Tools -> Perl5 -> Reformat with Perl::Tidy is disabled, even though perltidy is installed in the container, and interpreter info has been refreshed in the IDE.
(In case it happens to matter, the default command of the above mentioned image is just an usage message like
CMD echo "Run this image with an explicit command" && exit 1
, I'll test without that in a sec.)