Skip to content
Snippets Groups Projects
Commit a7e588ce authored by Junegunn Choi's avatar Junegunn Choi
Browse files

Merge pull request #336 from fazibear/fix-fish-streams

Fix CTRL-T on fish to work asynchronously
parents 9a2d9ad9 5baf1c55
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ function fzf_key_bindings
-o -type f -print \
-o -type d -print \
-o -type l -print 2> /dev/null | sed 1d | cut -b3-"
eval $FZF_CTRL_T_COMMAND | eval (__fzfcmd) -m > $TMPDIR/fzf.result
eval "$FZF_CTRL_T_COMMAND | "(__fzfcmd)" -m > $TMPDIR/fzf.result"
and commandline -i (cat $TMPDIR/fzf.result | __fzf_escape)
commandline -f repaint
rm -f $TMPDIR/fzf.result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment