Skip to content

Commit

Permalink
[zsh] Fix completion error on openSUSE Tumbleweed
Browse files Browse the repository at this point in the history
Fix suggested by @LangLangBart

Fix #3890
  • Loading branch information
junegunn committed Jun 28, 2024
1 parent 0420ed4 commit a067458
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shell/completion.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@ _fzf_dir_completion() {
"" "/" ""
}

_fzf_feed_fifo() (
_fzf_feed_fifo() {
command rm -f "$1"
mkfifo "$1"
cat <&0 > "$1" &
)
cat <&0 > "$1" &|
}

_fzf_complete() {
setopt localoptions ksh_arrays
Expand Down

0 comments on commit a067458

Please sign in to comment.