Override omitting parentheses on tab char if they are already placed

This commit is contained in:
Nikolay Krasko
2013-08-26 14:35:25 +04:00
parent cb10c53040
commit d399465bf3
4 changed files with 24 additions and 3 deletions
@@ -0,0 +1,8 @@
package testing
fun some(f: () -> Unit) = 12
fun other() = 12
fun test() {
som<caret>other()
}
@@ -0,0 +1,8 @@
package testing
fun some(f: () -> Unit) = 12
fun other() = 12
fun test() {
some(<caret>)
}