blob: 1c16f0e7b1b44af412aad933417d81c2a2907888 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
## vim:ft=zsh
## Written by Frank Terbeck <ft@bewatermyfriend.org>
## Distributed under the same BSD-ish license as zsh itself.
setopt localoptions extendedglob NO_shwordsplit
local base=${1%%/##}
[[ $(pwd -P) == ${base}/* ]] || {
printf '.'
return 1
}
printf '%s' ${$(pwd -P)#$base/}
return 0
|