summaryrefslogtreecommitdiff
path: root/plugins/terminalapp/terminalapp.plugin.zsh
blob: 4695ad0556d62806bf335408a7ed79171860f1f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Set Apple Terminal.app resume directory
# based on this answer: http://superuser.com/a/315029

function chpwd {
  local SEARCH=' '
  local REPLACE='%20'
  local PWD_URL="file://$HOSTNAME${PWD//$SEARCH/$REPLACE}"
  printf '\e]7;%s\a' "$PWD_URL"
}

chpwd