when i code elseif lines in the editor, it formats :
Should it not be like this :
and for every end if I type I must click 2 times enter, because of this auto....
This editor slows me so much down. I typing now in notepad++ and copy the text
to get some speed.
B4X:
If wDirection="r" Then
wDirection="l"
else if wDirection="l" Then
wDirection="r"
else if wDirection="t" Then
wDirection="b"
Else If wDirection="b" Then
wDirection="t"
End If
Should it not be like this :
B4X:
if wDirection="r" then
wDirection="l"
Else if wDirection="l" Then
wDirection="r"
else if wDirection="t" then
wDirection="b"
Else if wDirection="b" Then
wDirection="t"
end If
and for every end if I type I must click 2 times enter, because of this auto....
This editor slows me so much down. I typing now in notepad++ and copy the text
to get some speed.