Skip to content

Instantly share code, notes, and snippets.

@jewel12
Created February 10, 2011 19:22
Show Gist options
  • Save jewel12/821154 to your computer and use it in GitHub Desktop.
Save jewel12/821154 to your computer and use it in GitHub Desktop.
最後の引数のディレクトリにcd
function cd_last_opt() {
eval $BUFFER
cd `echo -c "${BUFFER}" | awk '{print $NF}'`
zle send-break
}
zle -N cd_last_opt
bindkey "^g" cd_last_opt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment