Skip to content

Instantly share code, notes, and snippets.

@guipacheco2
Created May 22, 2018 12:52
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 guipacheco2/aef21ea6dc061ef60ce7f5bb62a81785 to your computer and use it in GitHub Desktop.
Save guipacheco2/aef21ea6dc061ef60ce7f5bb62a81785 to your computer and use it in GitHub Desktop.
put you in your last-used directory when opening a new window
# emulate bash PROMPT_COMMAND (only for zsh)
precmd() { eval "$PROMPT_COMMAND" }
# open new terminal in same dir
PROMPT_COMMAND='pwd > "${HOME}/.cwd"'
[[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment