PerlNavigator icon indicating copy to clipboard operation
PerlNavigator copied to clipboard

Perl Language Server that includes syntax checking, perl critic, and code navigation

Results 51 PerlNavigator issues
Sort by recently updated
recently updated
newest added

Having the documentation at hand would be a nice addition. This should be achievable with the `perldoc` utility using variations of `perldoc -T -MPod::Simple::HTML `. The formatter would default to...

I recently managed to get PerlNavigator working on nvim quite easily using mason.nvim. However, Mason pulls the LSP from npm instead of git. Currently, the npm package uses version 0.2.8....

The function "Go to Definition" fails to identify the correct definition if a subroutine with the same name is present in another package in the same file, or if the...

The installation instructions at https://github.com/bscan/PerlNavigator#installation-for-other-editors didn't work for me after the most recent change: I had to add a `cd server` before running `tsc` (the command was there in older...

tidyWrapper.pl doesn't inspect the value of $error_flag returned by perltidy. If .perltidyrc contains the switch -st, then on formatting the document, $error_flag contains the value 1 and $stderr contains the...

When trying to use `perlnavigator` with [`nvim-navic`](https://github.com/SmiteshP/nvim-navic) I got the following warning: `nvim-navic: Server "perlnavigator" does not support documentSymbols, it responds with SymbolInformation format which has been deprecated in latest...

In the `"perlnavigator.includePaths"` setting, it would be useful to support one or more variables so that you can specify relative paths. This would be useful if you have multiple projects...

I intend to look into getting this done. Just an open issue for another method of safe execution of arbitrary code without the use of another machine. https://github.com/EvanCarroll/container-perl

There should be a quick section about Neovim in the README, along with the sublime, vscode, etc... docs. I can do this, but wanted to make sure you were aware....

test.pm: ``` package perl_test; require Exporter; our @ISA = qw(Exporter); our @EXPORT_OK = qw($SHARED_VAR shared_subroutine); our $SHARED_VAR="BLAH"; sub shared_subroutine { print "Shared routine\n"; } ``` test.pl: ``` use lib "./";...