I have some perl modules that have package names that contain underscores and numbers. Modules with these characters seem to break the content assist. I tested this with the following code:
When I type $t1-> I get a list of available functions but when I do the same with $t2 and $t3 I don't see anything. Is this a bug? If so, is it a known issue?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I have some perl modules that have package names that contain underscores and numbers. Modules with these characters seem to break the content assist. I tested this with the following code:
$t1 = Macros::mytest;
$t2 = Macros::my2test;
$t3 = Macros::my_test;
When I type $t1-> I get a list of available functions but when I do the same with $t2 and $t3 I don't see anything. Is this a bug? If so, is it a known issue?
A previously unknown bug, but fixed in 0.5.42/0.6.18.
Great, looks like it's working in 0.6.18. Thanks!!