should i be replacing flagsDarwin with the following text (-DStEVER etc) or adding to that line?
@laihalll It’s a deletion of one flag, steps are:
- Open
sorce/shlisp/makefile in your text editor of choice
- Go to line #5 (assuming using the latest
shbobo.zip), which should say flagsDarwin = -m32 -DSTEVEJOBS -framework IOKit -framework Foundation -ObjC++ -lstdc++ -o
- Delete just the bit of text that says
-m32, save the file, and you’re good to go!
So when you’re done, line #5 should look like flagsDarwin = -DSTEVEJOBS -framework IOKit -framework Foundation -ObjC++ -lstdc++ -o
There was a way to do this on the previous version of Fish (“jump” to switch soups) But I haven’t figured out how to do this on the new fish which came out after Shtar. Been meaning to post here to ask if this is still possible or if this functionality was lost. In which case what does “jump” do?
@renegog / @laihalll This took me forever to figure out how to do in Fish v2, and I only figured it out after accidentally finding a like three year old PeterB blogspot post 
Blogspot link here.
The way I do it is:
- Open Fish
- Click on the blank white square in the upper left (the patching canvas thing)
- Type
{ (shift and left square bracket key)
A new soup will be created and it kind of looks like { } <-- this. To be honest I’m not sure how to drag an opcode into the bowl without replacing it, so immediately after typing { I type ( (left parenthesis) and then the name of an opcode, and then ENTER.
So for example (follow these exactly):
- Click canvas
- Type
{ key
- Type
( key
- Type
left
- Type
ENTER key
- Type
( key
- Type
right
- Type
ENTER key
This is the traditional left+right output patch basis. From here you can use left/right arrow keys, ENTER to make a space/comment, space to generate random numbers, drag opcodes in, etc. This behaves as old videos show, I think.
To create another bowl, I just click the bowl I was working in (the { } shaped object) and type { again, which creates another bowl. The (jump (tar 1)) syntax works great for jumping between them! You can also press ENTER before { to create the second bowl on a new line, which is handy since Fish v2 apparently removed tabs (I never used the older version, just going off screenshots). The screenshot of my last post above shows what it looks like when working with multiple bowls - hope this helps!