superfluous backslash in zle widget removed

This commit is contained in:
Wojciech Siewierski 2013-11-10 15:31:10 +01:00
parent 1eceb6a4b9
commit 0dc725d09c
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ zsh widgets
# CTRL-T - Paste the selected file path into the command line
fzf-file-widget() {
LBUFFER+=$(
find * -path '*/\\.*' -prune \
find * -path '*/\.*' -prune \
-o -type f -print \
-o -type l -print 2> /dev/null | fzf)
zle redisplay