I'm currently utilizing Komodo IDE 8.5.
I've been attempting to indent my code to the next line in order to prevent it from extending too far to the right. However, every time I try to indent, it breaks the line and doesn't register properly. I'm not exactly sure how to explain it.
For example:
var price = 60;
if (price > 60)
document.write("<p> the brown fox jumped into the cold river.</p>")
But what I want is for it to appear like this and still function correctly:
var price = 60;
if (price > 60)
document.write("<p> the brown fox jumped
into the cold river.</p>")
Or something similar. Whenever I simply indent, it breaks the line of code, removes the color formatting, and indicates that it's incorrect.
How can I achieve this? Is it an issue with the IDE itself or do I need to use a specific syntax to indicate my intention?