udalov / kotlin-vim

Kotlin plugin for Vim. Featuring: syntax highlighting, basic indentation, Syntastic support
Apache License 2.0
630 stars 52 forks source link

Autoindent of closing brace doesn't work after a block comment #17

Open udalov opened 6 years ago

udalov commented 6 years ago
fun foo() {
    /*
    println()
    */
    <caret>

Press } at the caret position in the source above.

Expected result:

fun foo() {
    /*
    println()
    */
}

Actual result:

fun foo() {
    /*
    println()
    */
    }