7 lines
147 B
Plaintext
7 lines
147 B
Plaintext
|
// function to partially match filename for buffers
|
||
|
~getSmp = { |regexp|
|
||
|
~granBfr.detect { |buf|
|
||
|
regexp.matchRegexp(buf.path)
|
||
|
}
|
||
|
};
|