Column marking together with e.g. applying syntax case does not work

Claus Pedersen

Member³
I have the following code:
Code:
value := case when 1=1 then 'x' end;
value := case when 1=1 then 'x' end;
value := case when 1=1 then 'x' end;

I column mark the code after the assignment, i.e columns 10-37, all three rows, and select Edit -> Selection -> Apply Syntax Case.

This is what I get:
Code:
value := CASE WHEN 1=1 THEN 'x' END;
CASE WHEN 1=1 THEN 'x' END;value := case when 1=1 then 'x' end;
CASE WHEN 1=1 THEN 'x' END;value := case when 1=1 then 'x' end;

Not quite what I expected :confused:

I am using the setting Keyword case = Uppercase.

It is the same problem with Remove Trailing Blanks, whereas Uppercase and Lowercase seem to work OK.
 
Back
Top