]> Sergey Matveev's repositories - dotfiles.git/blobdiff - zsh/.zshrc
Following symlinks type in cf()
[dotfiles.git] / zsh / .zshrc
index 778759a9695789328f15cd2cebb14178e412dae2..79e2a928302f778db97e9e095efe83b75debc5e7 100644 (file)
@@ -215,7 +215,7 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan"
 # fzf {{{
 export FZF_DEFAULT_OPTS="--color=16 --info=inline"
 cf() {
-    local dir=$(find ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
+    local dir=$(find -L ${1:-.} -mindepth 1 -path "*/\.git" -prune -o -type d -print |
         fzf --height 40% --reverse --preview="tree -CN {}")
     [[ -z $dir ]] || cd $dir
 }