Right now the following statement causes error:
```
dataframe
.show()
```
and needs to be rewritten into
```
dataframe.
show()
```
Solution is to use the same trick as console REPL is using with `aste` command
I can have a look on this one. We have very simplified repl comparing to spark, so I would first need to investigate if it's possible to achieve this and keep our repl simple as it is now.
It can always be done by adopting more complete Spark Repl
No rush, it has low priority - nice feature to have, but not critical.