Multiline evaluation not working (Mac + Atom)

Hey,

I'm still new to this so this might be a dumb one.

So multiline evaluation doesn't work with Atom + Catalina config. The lines work fine by themselves but it seems line end is not registered. My Tidal is at version 1.7.2. In the attached picture I'm not running SC but it's not the issue here.

1 Like

Hello @vataja! Multiline works slightly different then you expected. You need to separate each stream (d1, d2 and so on) in a different line. In this context multiline mean, that your pattern is structured over several lines. This example should work with your multiline shortcut:

d1 $ sound "bd" 
   # speed "2" 
   # pan 0.2 

But if you try to evaluate two or more streams in multiline, then you need to add a do like

do
    d1 $ s "bd"
    d2 $ s "sn"
2 Likes

Ah I see, thank you so much! I'm so happy to see this community this active :--)

1 Like

Thanks again :slight_smile: