Closed CharlesGueunet closed 3 years ago
Right, it fails because the ${parameter:offset:length}
is a bash/ksh construct. #19 fixes this by using the cut command to do the string array slicing that produces the buffer id.
now that #18 and #19 are merged, this works better. Can you test and see if it works for you as well?
Yep, this works as intended now :)
Thanks a lot !
Hello,
First of all, thanks for this nice plugin. I have use dash as my
/bin/sh
as dash is POSIX compliant but way faster than bash. I seems however that this break thepick-buffer
command. The list of buffer stay empty and the debug buffer tells me:We may want to explicitely use
#!/bin/bash
or to use a POSIX compliant substitution instead.I am writing this quickly, I will take more time to investigate when I can.
Charles