Merge pull request #4 from Vifon/patch-1

superfluous backslash in zle widget removed
This commit is contained in:
Junegunn Choi 2013-11-10 06:34:21 -08:00
commit 1e9e597837
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