summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d5764293..efd6c80c 100644
--- a/README.md
+++ b/README.md
@@ -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