WebStorm - How to wrap error message in New Project?
If I have a very long error message, is it possible to make it wrap?
I have 2 classes, one that extends WebProjectTemplate and another that implements ProjectGeneratorPeer.
Please sign in to leave a comment.
You can wrap your text in HTML via com.intellij.xml.util.XmlStringUtil#wrapInHtml and that will automatically wrap any text that's too long
Worked! Thanks Dennis!