mirror of
https://github.com/artizirk/dotfiles.git
synced 2024-11-10 03:30:59 +02:00
13 lines
322 B
Bash
13 lines
322 B
Bash
|
function osc7-pwd() {
|
||
|
emulate -L zsh # also sets localoptions for us
|
||
|
setopt extendedglob
|
||
|
local LC_ALL=C
|
||
|
printf '\e]7;file://%s%s\e\' $HOST ${PWD//(#m)([^@-Za-z&-;_~])/%${(l:2::0:)$(([##16]#MATCH))}}
|
||
|
}
|
||
|
|
||
|
function chpwd-osc7-pwd() {
|
||
|
(( ZSH_SUBSHELL )) || osc7-pwd
|
||
|
}
|
||
|
add-zsh-hook -Uz chpwd chpwd-osc7-pwd
|
||
|
|