As of today, an error is occurring when I’m compiling macros (as text replacements). I’m using the KSP package in sublime 4 (build 4126). I was all working fine two days ago…
The macro still works in the sense that it does its function of replacing the text in my compiled code. However, it has stopped replacing the macro variable (#name# below) with the variable in the code…
//MACRO
macro sm_load_reverb_ir_folder(#name#)
load_ir_sample(#name#,2,0)
load_ir_sample(#name#,3,0)
end macro
//CODE
sm_load_reverb_ir_folder(hall_reverb)
instead of getting the expected text output of;
load_ir_sample(hall_reverb,2,0)
load_ir_sample(hall_reverb,3,0)
I’m now getting this instead;
load_ir_sample(#name#,2,0)
load_ir_sample(#name#,3,0)
This has just thrown a huge spanner in a year long contracted project that I’m days away from completing.
Any ideas why this is now happening?
Is it a setting or issue with Sublime? …or could it be the KSP package at fault?
OSX Big Sur (11.7.1)