Skip to content

Instantly share code, notes, and snippets.

@VienosNotes
Created August 29, 2014 07:17
Show Gist options
  • Save VienosNotes/97f269e5ff57129c4e92 to your computer and use it in GitHub Desktop.
Save VienosNotes/97f269e5ff57129c4e92 to your computer and use it in GitHub Desktop.
interactive cd with peco
#!/usr/bin/env zsh
#add following alias to your ~/.zshrc
#alias cdp='. _cdp'
PWD=`ls -la | grep '^d' | awk '{print $9}' | peco --prompt="$(pwd) >"`
if [ $PWD = "." ]; then
cd $PWD
else
cd $PWD
. _cdp
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment