udalov / kotlin-vim

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

Do not double-indent argument lists #25

Closed cskr closed 5 years ago

cskr commented 5 years ago

As described in Kotlin coding conventions parameters in class headers, functions and method calls must be indented with a single indent. Intellij IDEA is also migrating to this style.

This change makes kotlin-vim adopt the official indentation format of Kotlin.

udalov commented 5 years ago

Thank you!