Probably a simple one but I can’t seem to find out where to stop this. Each time I type in
int
it gets instantly replaced with
integer
and the package
import android.R.integer;
is automatically included.
Anyway of stopping this from happening in Eclipse?
Thanks
I had auto activation enabled with all characters enabled for activation triggers
.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
This was so I could get the auto suggestions for variables and function names but it was also causing int to turn into integer.
The only way around it is to give it a delay that is slower than how long it takes you to type ‘int’. My delay was on 0 so I just set it to 100 and that works fine for me.