1
0
Fork 0
trans.fail_xenotopic.network/scd/lib/05-func.scd

9 lines
149 B
Plaintext

// function to partially match filename for buffers
~getSmp = { |regexp|
~bfrList.detect { |buf|
regexp.matchRegexp(buf.path)
}
};