]> Sergey Matveev's repositories - dotfiles.git/blob - tmux/.tmux/functions.zsh/tmux-fzf-find
Make zathura configuration file aware
[dotfiles.git] / tmux / .tmux / functions.zsh / tmux-fzf-find
1 bfs -L . -mindepth 1 \
2     -path "*/.git" -prune -o \
3     -path "*/.redo" -prune -o \
4     \( -type f -o -type d -o -type l \) -print |
5 cut -c3- | fzf -m --preview="less -N -S {}" |
6 while read fn ; do print -r ${(q)fn} ; done