From 9ddf5c72be852525c64f92bd826f8700d5cd9e36 Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov Date: Tue, 12 Jan 2021 19:09:34 +0000 Subject: [zsh] Properly reset prompt after completion (#2318) --- shell/completion.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') diff --git a/shell/completion.zsh b/shell/completion.zsh index 4df849ff..f12afca1 100644 --- a/shell/completion.zsh +++ b/shell/completion.zsh @@ -211,7 +211,6 @@ _fzf_complete() { if [ -n "$matches" ]; then LBUFFER="$lbuf$matches" fi - zle reset-prompt command rm -f "$fifo" } @@ -302,6 +301,7 @@ fzf-completion() { if eval "type _fzf_complete_${cmd} > /dev/null"; then prefix="$prefix" eval _fzf_complete_${cmd} ${(q)lbuf} + zle reset-prompt elif [ ${d_cmds[(i)$cmd]} -le ${#d_cmds} ]; then _fzf_dir_completion "$prefix" "$lbuf" else -- cgit v1.2.3