kotlin-jupyter icon indicating copy to clipboard operation
kotlin-jupyter copied to clipboard

When pasting a code to a cell nice to auto-replace single quotes with double quotes in strings

Open alshan opened this issue 4 years ago • 1 comments

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.

alshan avatar Jun 11 '20 19:06 alshan

Another example: Python:

... aaa \
+ bbb

Must be replased in Kotlin with

... aaa +
bbb

alshan avatar Jun 11 '20 19:06 alshan