wrap completion bug

make a method

insert “select case foo”
then shift-return you get the “end select”

insert an “else” between the two lines
then a “case bar”
then a “if bar2” to get this :

[code] select case foo
case bar
if bar2
else

end select[/code]

press shift-return and you get …?

this :

[code] select case foo
case bar
if bar2 then

end select
else

end select[/code]

already reported