algoforte03a/lib/00-funcs.scd

7 lines
147 B
Plaintext
Raw Normal View History

2023-04-30 23:26:19 +02:00
// function to partially match filename for buffers
~getSmp = { |regexp|
~granBfr.detect { |buf|
regexp.matchRegexp(buf.path)
}
};