In my javaIDE eclipse indigo, started making a list e.g.
List<Integer> list = new
and then hit Ctrl + space and the top choice was ArrayList() which then filled in the rest
List<Integer> list = new ArrayList<Integer>();
Now I have moved to Spring Tools Suite, and this ArrayList is not even found in the list, let alone at the top until I type "ar".
Is there a way of making this ArrayList() show in the autocomplete list and if so, how so I can do it with other implementing classes as well (e.g. Map -> HashMap, etc.).
P.S. I have seen other posts like this and I don't want suggestions to do it another way e.g. Ctrl+2, L. This is because I type this way
Thanks