Ignore new line/carriage return in code?

I’ve searched countless videos, read the docs, found a list of keyboard shortcuts,/macros but I cannot find how to break single lines of code into shorter stacked lines. How does everyone do it?

Brendan

In many cases, you can just split the line (e.g. after the comma in a parameter list) and things will just work. When that doesn’t work (I think basically when it makes the first line a valid line all on its own), then you can add a backslash at the end of the line:

play :c,
  release: 4,
  amp: 2

play :e \
  , release: 4 \
  , amp: 2

Thanks, this appears to work in my own code - as long as the line split occurs after the first comma, SPi has no issues