WebStorm - How to wrap error message in New Project? Karl Anthony Ng 创建于 2018年04月17日 01:28 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.
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!