alexsullivan114
08/28/2017, 6:18 PMObservable.just("Foo")
.map { "Bar" }
.filter { it == "Baz" }
.doOnNext { print("Bat") }
.subscribe { print(it) }
if I try to autoformat it, it puts all the function calls on one line - i.e. it becomes this:
Observable.just("Foo").map { "Bar" }.filter { it == "Baz" }.doOnNext { print("Bat") }.subscribe { print(it) }
What option do I need to change in the kotlin code styles to keep the newlines?nhaarman
08/28/2017, 8:52 PM