Skip to content

Instantly share code, notes, and snippets.

@naoty
Created June 23, 2014 02:53
Show Gist options
  • Save naoty/5958e22135579b6bc7b6 to your computer and use it in GitHub Desktop.
Save naoty/5958e22135579b6bc7b6 to your computer and use it in GitHub Desktop.
change directory selected on peco
# ディレクトリスタックを重複を省いてファイルに保存する
dirs -lp > $HOME/.dirs.tmp
cat $HOME/.dirs.tmp | sort | uniq > $HOME/.dirs
rm $HOME/.dirs.tmp
function peco_cd_directory_stack() {
cd `cat $HOME/.dirs | peco`
}
zle -N peco_cd_directory_stack
bindkey '^f' peco_cd_directory_stack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment