Skip to content

Instantly share code, notes, and snippets.

@paulbellamy
Created September 14, 2018 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulbellamy/598754f23cb1e2bf1f637e8e1617ec10 to your computer and use it in GitHub Desktop.
Save paulbellamy/598754f23cb1e2bf1f637e8e1617ec10 to your computer and use it in GitHub Desktop.
zsh widget to flip between last two directories with ctrl-e
prev_dir() {
zle push-line
cd -
zle reset-prompt
echo
zle get-line
}
zle -N prev-dir prev_dir
bindkey '^e' prev-dir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment