I am transitioning from Eclipse to Android Studio , and I noticed a slight difference. In Eclipse, when I use code completion, for example, like 
Eclipse will complete such code and let me just use the tab to go to the next parameter.
Log.d(tag, msg)
But Android Studio does the following:
Log.d()
So, is there any parameter that will achieve the same result in Android Studio or is available only in Eclipse
source share