#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # # cd with fuzzyfind # # use fuzzy find to find files/directories to cd into from the directory you're # in. If first argument starts with /, we start by cding into that directory, # and then fuzzy find files under that directory. # autoload -Uz cd local origdir=$PWD local dir function cdback() { [[ $origdir == $PWD ]] || cd -q $origdir } # if first argument starts with /, assume it's a directory, and start by cding into it if (( ARGC )) && [[ ${1[1]} == '/' ]]; then cd -q $1 && shift fi dir=$(fzf +m -q "${@:-}") || { cdback && return 2 } if (( ${#dir} )); then cd $dir else cdback fi # END OF FILE #################################################################