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

Minor code cleanup

parent a568120e
No related branches found
No related tags found
No related merge requests found
......@@ -80,9 +80,9 @@ _fzf_dir_completion() {
}
_fzf_feed_fifo() (
rm -f "$fifo"
mkfifo "$fifo"
cat <&0 > "$fifo" &
rm -f "$1"
mkfifo "$1"
cat <&0 > "$1" &
)
_fzf_complete() {
......
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