Kotlin/IDEA: How to turn off comment autocompletion when using typealias?

103 Views Asked by At

Say I have a typealias

package server.user

typealias UserId = Int

Then I want to write a function in another package

package client.game

fun getUser(userId: UserId): User

When I get to

fun getUser(us

It autosuggests userId: UserId, and if I follow this suggestion, it adds the following

fun getUser(userId: UserId /* = kotlin.Int */

My question then is: How do I get IDEA to stop adding this comment?

0

There are 0 best solutions below