Erik
07/06/2022, 3:06 PMfun f(x: Int, y: Int) = TODO()
then it is possible to autocomplete them with arguments like so:
Type: f
, then it should suggest to autocomplete f
and then you press some key so that the IDE (Android Studio or IntelliJ) now completes it to f(x = , y = )
, with the cursor just before the comma so you can continue typing, e.g. 1
and then you press tab to move the cursor to the next argument (y =
) so you can continue typing.
I'm sitting right next to a colleague who can do this in one project. But not in another, so we think it's a project setting that's somehow enabled in one project, but not in the other. This would be super helpful to enable this in all our projects, but how do we do that? What's this feature called? Is there a keystroke to use? Is this something that can be enabled?Youssef Shoaib [MOD]
07/06/2022, 3:12 PMErik
07/06/2022, 3:13 PM