It seems I can't add custom postfix completions for Kotlin in neither IntelliJ IDEA (2018.3), nor in Android studio (3.2.1). If I go to preferences | Editor | General | Postfix Completion and I click the add button, there is no option for Kotlin (see screenshots below). Is it possible to add new postfix completions?
I'd like to add a .with postfix completion, so that x.with would expand to
with(x) {
// The caret should go here
}
Side note: I think it's a shame there is no postfix completion for with out of the box.
Screenshots of IntelliJ IDEA (2018.3) and Android Studio (3.2.1):

