You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perl auto-completion and code intel does not work when loading the FindBin module and importing $Bin and/or $Script.
Works:
use FindBin;
Doesn't work:
use FindBin qw($Bin $Script); use FindBin qw($Script);
Take a look at the attached file and comment out the different options for loading FindBin and then go a few lines below it and type 'prin', it should give you code intel on the print function. This does not work when importing $Bin and/or $Script variables