I have a couple of lines in my kv. file that are really long (80+ chars), and I was wondering if there was a way to wrap/continue them on the next line.
For example, how do I go from this
Line:
points: self.pos[0] + 5, self.pos[1] + 2, self.pos[0] + self.width - 5, self.pos[1] + 2
to
Line:
points: self.pos[0] + 5, self.pos[1] + 2,
self.pos[0] + self.width - 5, self.pos[1] + 2
or something similar.