]> Sergey Matveev's repositories - dotfiles.git/commitdiff
Following symlinks type in cf()
authorSergey Matveev <stargrave@stargrave.org>
Wed, 2 Jun 2021 10:05:26 +0000 (13:05 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Wed, 2 Jun 2021 10:05:26 +0000 (13:05 +0300)
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
 }