Is it possible to introduce line breaks in long Grasshopper component RuntimeMessages - remarks, warnings, and errors -, because very long strings tend to surpass the screen width sometimes, which is annoying!
import Grasshopper as gh
e = "Very very very very very very very very very very very very very very very long error message"
ghenv.Component.AddRuntimeMessage(gh.Kernel.GH_RuntimeMessageLevel.Error, e)
I usually add multiline runtime information in the component Message (the little black tab that sticks out the bottom). It works quite well and is simple to implement.