Files
zsh/Functions/VCS_Info/VCS_INFO_reposub
2013-11-29 12:32:36 -08:00

14 lines
304 B
Bash

## 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