summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2013-11-10 06:34:21 -0800
committerJunegunn Choi <junegunn.c@gmail.com>2013-11-10 06:34:21 -0800
commit1e9e5978374503c77508790f9dfb7704d309f506 (patch)
treec754786cb1846288dca1e527c02b1c29b3107880
parent1eceb6a4b9d0aa353e08482368f236e8d3087f2d (diff)
parent0dc725d09cb004a6674cb776cf5517f357fb960d (diff)
Merge pull request #4 from Vifon/patch-1
superfluous backslash in zle widget removed
-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