vote up 0 vote down star

I have EPIC installed for Eclipse to be used for perl development. EPIC used perltidy for souce formatting. The problem I am facing is this - When I select a bunch of code and press CTRL+SHIFT+F the selected code gets formatted according to the preferences saved. However, sometimes this does happen even though the select code is not correctly formatted.

Eg:

1 formatting the below gives what is shown in [2]

if ($job) {
&debugprint( 1, "Calling job=>$job" );
    eval { &$job; };
    &n_implemented( $@, $job ) if $@;
}
else 
{
&debugprint( 1, "Calling job=>default_job" );
    &default_job();
}

2 Correctly formatted code

if ($job) {
    &debugprint( 1, "Calling job=>$job" );
    eval { &$job; };
    &n_implemented( $@, $job ) if $@;
}
else {
    &debugprint( 1, "Calling job=>default_job" );
    &default_job();
}

When I edit [2] > change it back to look like [1] > reselect code and press CTRL+SHIFT+F > code does not get correctly formatted.

Is this a known bug? OR could it be that my installation is corrupt? (but I have same problem on multiple Eclipse/EPIC installs of diff versions and OSs)

flag

71% accept rate
I've tryied your sample, but it formated ok. Can you please give a full source? (you can post it to pastebin.com if it's too big) – Ivan Nevostruev Nov 2 at 20:01

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.