My current project has the coding convention that instance variables are never referred to with the this. prefix and that parameters should never hide instance variables.
<
Very simple...
.settings
(it might already be there).org.eclipse.jdt.core.prefs
org.eclipse.jdt.core.codeComplete.argumentPrefixes=a
That's it, your done. It should just work. I couldn't find proper documentation for this, but here are some other options you might set:
org.eclipse.jdt.core.codeComplete.argumentPrefixes=
org.eclipse.jdt.core.codeComplete.argumentSuffixes=
org.eclipse.jdt.core.codeComplete.fieldPrefixes=
org.eclipse.jdt.core.codeComplete.fieldSuffixes=
org.eclipse.jdt.core.codeComplete.localPrefixes=
org.eclipse.jdt.core.codeComplete.localSuffixes=
org.eclipse.jdt.core.codeComplete.staticFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=