From a29ad45eba360d16aef0a148ab6121e43d45e22b Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sat, 5 Nov 2022 13:42:22 +0300 Subject: [PATCH] Working properly quoted filename --- tmux/.tmux/functions.zsh/tmux-fzf-find | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux/.tmux/functions.zsh/tmux-fzf-find b/tmux/.tmux/functions.zsh/tmux-fzf-find index c114afd..54b8fac 100644 --- a/tmux/.tmux/functions.zsh/tmux-fzf-find +++ b/tmux/.tmux/functions.zsh/tmux-fzf-find @@ -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 -- 2.44.0