diff --git a/config/fish/functions/go.fish b/config/fish/functions/go.fish index d40686b..3e24e42 100644 --- a/config/fish/functions/go.fish +++ b/config/fish/functions/go.fish @@ -1,6 +1,6 @@ function go --description 'Jump to directories' lr /home /data /etc -L -t '(name ~~ ".*" && prune || print) && type = d && !(name = ".git")' \ - | fzf \ + | fzf --height 10 \ | read -l dir - [ "$dir" ]; and cd $dir; and clear + [ "$dir" ]; and cd $dir end