When I type ```"""Foo"""``` then hit `Return` with...
# intellij
j
When I type
Copy code
"""Foo"""
then hit
Return
with the cursor between
o
and
"
, the IDE automatically transforms the code to
Copy code
"""Foo
    |
""".trimMargin()
Is there a way to prevent this from happening?
j
Oh, nice! Thanks @ephemient!