kotlin-jupyter
kotlin-jupyter copied to clipboard
When pasting a code to a cell nice to auto-replace single quotes with double quotes in strings
I'm porting Python Lets-Plot notebooks to Kotlin notebooks and one of the most annoying manual operations is the replacing of single quotes with double quotes in strings.
Generally, nice to have an intelligent code converter Python -> Kotlin similar to Java -> Kotlin in IDEA.
Another example: Python:
... aaa \
+ bbb
Must be replased in Kotlin with
... aaa +
bbb