summaryrefslogtreecommitdiff
path: root/contrib
Commit message (Collapse)AuthorAge
* fzy-tmux: Use named pipe for conveying exit codeDaniel Mueller2020-07-06
| | | | | | | | | | | | | | | | On a couple of occasions I've seen the following error being reported by the fzy-tmux script: > head: cannot open '/tmp/tmp.qUbDwrPLxQ/ret' for reading: No such file or directory > /usr/bin/fzy-tmux: line 41: exit: : numeric argument required The issue seems to be that PATH_FIFO_RET is not yet created but we already try to read from it, causing the read to fail. With this change we use a named pipe which we create before the actual tmux invocation, preventing this case from happening. Credit for the fix goes to @zsugabubus. Closes: #143
* Implement support scripts for `tmux` and `dvtm`Frank LENORMAND2017-02-08
This script adds two scripts that allows spawning a new window/pane in `tmux` and `dvtm` in which `fzy` will be called. Options data on the standard input are passed seamlessly, e.g. $ find -type f | fzy-tmux $ ag -g '' | fzy-dvtm -l $(tput lines)