]> Sergey Matveev's repositories - dotfiles.git/blobdiff - tmux/.tmux/functions.zsh/tmux-fzf-find
Working properly quoted filename
[dotfiles.git] / tmux / .tmux / functions.zsh / tmux-fzf-find
index c114afd799d2d6b24f39efa4b7a5e7e33710bca7..54b8facfc7a05b932ebf0d5dabd811e918957ac2 100644 (file)
@@ -3,4 +3,4 @@ bfs -L . -mindepth 1 \
     -path "*/.redo" -prune -o \
     \( -type f -o -type d -o -type l \) -print |
 cut -c3- | fzf -m --preview="less -N -S {}" |
-while read fn ; do print ${(q)fn} ; done
+while read fn ; do print -r ${(q)fn} ; done