]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Let's try bfs
[dotfiles.git] / zsh / .zshrc
index a3ea22949fe45abb8c3f005934d84b4534412645..ebfebf491a52090fc9d1b41ffb1f21526f80fa2b 100644 (file)
@@ -82,7 +82,7 @@ alias -g W="| wc -l | sed 's/ //g'"
 alias mc="mc --nomouse"
 
 f() {
-    find . -name "*$1*" -print
+    bfs . -name "*$1*" -print
 }
 
 alias ssh="TERM=xterm ssh"
@@ -200,8 +200,11 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
 
 # fzf {{{
 cf() {
-    local dir=$(find -L ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
-        fzf --height 40% --reverse --preview="tree -CN {}")
+    local dir=$(bfs -L ${1:-.} -mindepth 1 \
+        -path "*/\.git" -prune -o \
+        -path "*/\.redo" -prune -o \
+        -type d -print 2>/dev/null |
+            fzf --height 40% --reverse --preview="tree -CN {}")
     [[ -z $dir ]] || { print -s cd $dir ; cd $dir }
 }
 # }}}