"perl.ignoreDirs": [
".vscode",
".git",
".svn",
"test/TMP",
],
won't work as expected for the tree
.
└── lib
└── test
└── TMP
└── etc
|
next if (exists $ignore_dir -> {$d}) ; |
$d in the above will only ever be the name of the the directory under question, in this case "TMP", instead of a absolute or relative path, which won't match. Can this be changed to support absolute/relative paths (and maybe globbing), or have the limitations documented in the tooltip in vscode?
won't work as expected for the tree
Perl-LanguageServer/lib/Perl/LanguageServer/Parser.pm
Line 541 in 6e43563
$din the above will only ever be the name of the the directory under question, in this case "TMP", instead of a absolute or relative path, which won't match. Can this be changed to support absolute/relative paths (and maybe globbing), or have the limitations documented in the tooltip in vscode?