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