all repos — archive/dotfiles @ b08f6fb6ee6592db030f3f72d97ef291d1ce2d4c

Superseded by nixfiles

Fix fzf completion
Alan Pearce alan@alanpearce.uk
Tue, 17 Jan 2017 15:42:02 +0100
commit

b08f6fb6ee6592db030f3f72d97ef291d1ce2d4c

parent

966c4b9ab78499f82ff467a4e330d0966feb6784

1 files changed, 18 insertions(+), 1 deletions(-)

jump to
M tag-zsh/config/zsh/zshrctag-zsh/config/zsh/zshrc
@@ -5,7 +5,7 @@ zplug "zsh-users/zsh-completions", depth:1, defer:0 zplug "Tarrasch/zsh-autoenv", as:plugin
 zplug "clvv/fasd", hook-build:"PREFIX=$HOME make install"
 zplug "junegunn/fzf-bin", from:gh-r, as:command, rename-to:fzf
-zplug "junegunn/fzf", as:plugin, use:"shell/*.zsh"
+zplug "junegunn/fzf", as:plugin, use:"shell/*.zsh", defer:2
 zplug "junegunn/fzf", as:command, use:"bin/*"
 zplug "caarlos0/zsh-open-pr", as:plugin
 if [[ -n $commands[nix-env] ]]
@@ -230,6 +230,23 @@ fi   }
   precmd_functions+=(update_window_title)
 fi
+
+if zplug check junegunn/fzf
+then
+  _fzf_compgen_path() {
+    echo "$1"
+    command find -L "$1" \
+            -name .git -prune -o -name .svn -prune -o \( -type d -o -type f -o -type l \) \
+            -a -not -path "$1" -print 2> /dev/null | sed 's@^\./@@'
+  }
+
+  _fzf_compgen_dir() {
+    command find -L "$1" \
+            -name .git -prune -o -name .svn -prune -o -type d \
+            -a -not -path "$1" -print 2> /dev/null | sed 's@^\./@@'
+  }
+fi
+
 
 if zplug check clvv/fasd
 then