Perl-LanguageServer icon indicating copy to clipboard operation
Perl-LanguageServer copied to clipboard

Language Server for Perl

Results 76 Perl-LanguageServer issues
Sort by recently updated
recently updated
newest added

Hi, I install perl::languageServer on centos 7 with perl 5.18.0 when debug, the debug panel show up for only few second. nothing happen- after. DH

question

Less of an issue (for now) and more of a HOWTO, but the Perl syntax server crashes periodically. Can I debug this? Is it worth it?

question

Currently it is possible to pass arguments to the Perl debugger in VS code in the launch.json file, using the built in args facility and input variables: ##launch.json file "configurations":...

enhancement

I believe this works with perl 5.16 just fine. Just change 5.18 to 5.16 and remove the no experiential warnings. This will help people forced to be stuck in old...

Hi there, today i tried to set additional include directories via settings.json this way: ```json { "perl.perlInc": [ "${workspaceFolder}/lib" ], } ``` But it turns out, that the `${workspaceFolder}` variable...

I try to setup LanguageServer with VS Code & Perl Strawberry on Windows 10: The command `perl -v` prints: `This is perl 5, version 32, subversion 0 (v5.32.0) built for...

I inherited a lot of Perl code and have no idea what it does, so I intend to single step through it to learn it. After messing around in OS...

Hi, I can not get debug working here is my setup for launch.json: { "version": "0.2.0", "configurations": [ { "type": "perl", "request": "launch", "name": "Perl-Debug", "program": "${file}", "stopOnEntry": true, "reloadModules":...

just like https://github.com/vim-syntastic/syntastic/issues/422 Perl complains if you edit a script with the following shebang line: ``` #!/usr/bin/perl -T ``` with the message: ``` "-T" is on the #! line, it...

Maybe not only in my case the running program belongs to another user. Normally I run for debugging "sudo -u www-data QUERY_STRING=something perl -d program.pl" I have patched DebuggerProcess.pm with...