If you are going to change the references, I got my fix working. The line was correct, but the location in the code was wrong. Actinic already removed the '-'.
In search.pm, after the line:
# Split words on the same boundaries as the C++ does
Put this line:
$$psSearchString =~ s/(\S+)\-/ /gio;
This will change CR-AS-CD-S520 to S520 to search on the significant part of the reference. Otherwise it will match on cr,as,and cd too in this example.
In search.pm, after the line:
# Split words on the same boundaries as the C++ does
Put this line:
$$psSearchString =~ s/(\S+)\-/ /gio;
This will change CR-AS-CD-S520 to S520 to search on the significant part of the reference. Otherwise it will match on cr,as,and cd too in this example.
Comment